aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching
Commit message (Collapse)AuthorAgeFilesLines
* fix #678: handle special characters in user nameBananeweizen2011-10-183-19/+42
| | | | | | | * bad side effect of performance optimizations in parsing, reverted that * refactored parseCache to be static (to be able to write a test) * moved some map initializations to static code (to allow unit test without app) * fixed missing trim for owner name
* #310, import GPX from mailBananeweizen2011-10-161-1/+1
| | | | | | * tested with Gmail only, not with other mail clients * uses the GPX activity, so you will see the GPX files of your SD card in the background * some refactorings and cleanups in GPX parser
* support cache type "unknown", fixes #518Bananeweizen2011-10-164-5/+9
| | | | * refactored many places to reference the cache type enum * special icon for "unknown" still missing
* Merge remote branch 'blafoo/regex2'Bananeweizen2011-10-158-138/+2256
|\ | | | | | | | | | | | | | | | | Conflicts: main/src/cgeo/geocaching/cgBase.java reapplied: 13206cb835eb22aa49b198b892dcd7cf71f4ac82 c5d43adaa9db1db877ea084551db74faa048a7e1
| * Tuned regexblafoo2011-10-108-138/+2256
| |
* | new: sort cache series numerically correct when sorting by nameBananeweizen2011-10-151-0/+42
| |
* | Add new trackable parsing testSamuel Tardieu2011-10-141-0/+18
| |
* | use WaypointTypekoem2011-10-111-2/+2
| |
* | Merge remote branch 'upstream/master' into enumskoem2011-10-103-0/+59
|\ \ | |/ | | | | | | | | Conflicts: main/src/cgeo/geocaching/cgData.java main/src/cgeo/geocaching/cgeodetail.java
| * fix #645: remove multiple progress dialogs in details activityBananeweizen2011-10-091-0/+26
| |
| * trim values when parsing trackablesBananeweizen2011-10-091-2/+2
| |
| * Fixed + refactored cgTrackable, added testblafoo2011-10-081-0/+23
| |
| * fix: also handle time stamps containing milli seconds in GPXBananeweizen2011-10-081-0/+10
| |
* | always use WaypointTypekoem2011-10-081-2/+2
|/
* fix #608: wrong error logged with no trackables in accountBananeweizen2011-10-081-0/+32
|
* No need to trim the result for timing purposeSamuel Tardieu2011-10-071-1/+1
|
* Merge branch 'whitespace-cleanup' into upstreamSamuel Tardieu2011-10-073-5/+45
|\ | | | | | | | | Conflicts: tests/src/cgeo/geocaching/test/WhitespaceTest.java
| * Fixed cgBase.replaceWhitespace() and additional testsblafoo2011-10-072-9/+30
| |
| * Merge remote branch 'upstream/master'blafoo2011-10-0523-151/+1972
| |\ | | | | | | | | | | | | Conflicts: tests/src/cgeo/geocaching/test/WhitespaceTest.java
| * | replaceWhitespace for JUnit testsblafoo2011-10-022-1/+19
| | |
* | | Reorganize and cleanup the local storage handlingSamuel Tardieu2011-10-061-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | After the HTTP requests cleanup, it was time to rewrite the local storage handling. Code that manipulate files has been placed into a new LocalStorage class. It can locate files on the disk, retrieve web responses and store them, and copy files.
* | | Fix tests after mocked caches updateSamuel Tardieu2011-10-061-2/+2
| | |
* | | Fix for terrain after GC.com updateblafoo2011-10-063-192/+322
| |/ |/|
* | Merge remote-tracking branch 'sammyshp/verboseloading'Samuel Tardieu2011-10-051-9/+5
|\ \ | | | | | | | | | | | | | | | Conflicts: main/src/cgeo/geocaching/cgBase.java main/src/cgeo/geocaching/connector/GCConnector.java
* | | code cleanup: remove another static methods warningBananeweizen2011-10-051-3/+2
| | |
* | | Remove unused imports in testsSamuel Tardieu2011-10-051-2/+0
| | |
* | | New elevation testSamuel Tardieu2011-10-051-1/+5
| | |
* | | Make several things static following the Settings static moveSamuel Tardieu2011-10-0512-44/+37
|/ /
* | Minor cleanup for unit test refactoringStephan Merker2011-10-031-1/+1
| | | | | | | | - fixed README.md - moved ParametersTest
* | Merge pull request #597 from stephanme/unittestsBananeweizen2011-10-0314-18/+20
|\ \ | | | | | | fix #587: put tests into same java package as tested class
| * | Made some public methods package privateStephan Merker2011-10-031-3/+0
| | | | | | | | | - fixes 587
| * | Refactoring: put tests into same java package as tested classStephan Merker2011-10-0314-16/+21
| | | | | | | | | | | | | | | - fixes #587 - test suite and 3 tests (regex and whitespace perf tests) remain in cgeo.geocaching.test
* | | Merge pull request #596 from samueltardieu/common-gc-searchBananeweizen2011-10-031-0/+54
|\ \ \ | |/ / |/| | Common gc search
| * | Use more Parameters() with variable argumentsSamuel Tardieu2011-10-031-0/+54
| | |
* | | fix #586: manual merge of usability improvement for GPX importStephan Merker2011-10-031-0/+25
|/ / | | | | | | I hope I got it right. I had to apply this as patch, as my Eclipse didn't want to merge this pull request by any means.
* | fix #120: make settings static (no singleton)Bananeweizen2011-10-036-54/+42
| | | | | | | | | | | | | | | | | | | | * Settings can no longer be instantiated, everything is static instead. * Most option values are no longer cached in fields. This has been done for clarity during the refactoring. I will add some performance tests afterwards and may re-introduce those fields for caching the option values. Sorry, if anyone gets merge issues afterwards. There was no easier way to implement this...
* | fix #589, extra HTML in locationBananeweizen2011-10-023-3/+1764
|/ | | added test for GCV2R9
* Merge #510bananeweizen2011-10-016-1/+256
|\ | | | | | | | | | | Conflicts: main/src/cgeo/geocaching/cgBase.java tests/src/cgeo/geocaching/test/mock/MockedCache.java
| * Pimped additional regexblafoo2011-09-252-22/+42
| |
| * Pimped additional regexblafoo2011-09-255-49/+197
| |
| * Tuned regex for description and hintblafoo2011-09-252-2/+107
| |
* | Add a new test for Compatibility packageSamuel Tardieu2011-09-301-0/+35
| | | | | | | | This test should pass in any supported Android version.
* | additional test for whitespace replacement performancebananeweizen2011-09-301-0/+80
| |
* | revert parts of 1246ee08e243bfb7aa876af9b2a206e6c2d485d3 for betterbananeweizen2011-09-302-4/+4
| | | | | | performance
* | Fix localized testsSamuel Tardieu2011-09-294-22/+30
| | | | | | | | | | | | The refactoring 742831d726d2065eafeec94172d0c3a0faccf47a broke tests if a non-English formatting was used for numbers (German or French one for example).
* | Use real parameters instead of a Map for searchByGeocode()Samuel Tardieu2011-09-291-5/+1
| |
* | fix compile errors after merging #544 (tests still to be fixed)bananeweizen2011-09-291-2/+0
| |
* | Merge pull request #544 from stephanme/importwptBananeweizen2011-09-291-19/+140
|\ \ | | | | | | Import waypoints file from pocket query
| * | Improved getWaypointsFileForGpx()Stephan Merker2011-09-281-0/+3
| | |
| * | Import waypoint file together with cache gpx file if existsStephan Merker2011-09-271-43/+46
| | | | | | | | | | | | | | | - get rid of DB accesses and cache tweaking during parsing - caches are written once together with waypoints into DB