aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
Commit message (Collapse)AuthorAgeFilesLines
* Add more tests for getHumanDistance()Samuel Tardieu2012-04-201-7/+30
|
* increase compiler warnings level (and fix some)Bananeweizen2012-04-202-2/+2
| | | | * boxing/unboxing * name shadowing
* Refactoring: do not get through an extra Geopoint when not requiredSamuel Tardieu2012-04-202-6/+6
|
* Refactoring: remove unused Viewport constructorSamuel Tardieu2012-04-201-1/+1
|
* Refactoring: move Direction out of GeopointSamuel Tardieu2012-04-201-3/+3
| | | | Directions deserve their own package to make it clearer of who use them.
* Add optional table parameter to Viewport#sqlWhere()Samuel Tardieu2012-04-201-1/+2
|
* refactoring: renames and encapsulationBananeweizen2012-04-193-15/+15
|
* refactoring: rest in peace, cgBaseBananeweizen2012-04-189-121/+145
|
* Refactoring: move Login from network to connector.gcSamuel Tardieu2012-04-175-5/+4
|
* Make Geopoint parcelableSamuel Tardieu2012-04-161-0/+9
|
* Add new Viewport method and builderSamuel Tardieu2012-04-141-0/+27
|
* Refactoring: rename isInViewport() to contains()Samuel Tardieu2012-04-141-5/+5
| | | | This is a better name from the point of a viewport.
* fix #94: Filter for Difficulty and Terrain Bananeweizen2012-04-144-2/+48
|
* refactoring: remove the logging tag from settingsBananeweizen2012-04-126-21/+19
|
* more fixes for crashes in searchBananeweizen2012-04-122-2/+2
|
* Tests: add tests for ViewportSamuel Tardieu2012-04-121-0/+72
|
* Refactoring: remove int based Geopoint and Viewport constructorsSamuel Tardieu2012-04-123-8/+2
| | | | | Those were source of errors, and have no legitimate reason to be used in our current code base as this changeset shows.
* Implements cache for live-map tilesrsudev2012-04-122-0/+28
|
* Remove unused (except in tests) conversion methodsSamuel Tardieu2012-04-111-5/+0
|
* Move two methods into the testsSamuel Tardieu2012-04-111-4/+5
| | | | | Those two methods were only used in the tests. They can be rewritten more concisely while testing the same thing.
* Implement equals() and hashCode() for GeopointSamuel Tardieu2012-04-117-14/+14
|
* Waypoint and caches both have coordinates, add ICoordinates interfaceSamuel Tardieu2012-04-113-16/+2
| | | | | Geopoint obviously implements ICoordinates. Also, getLongitude() and getLatitude() were only used in tests, remove them.
* Use an array with in-place constructor instead of a ListSamuel Tardieu2012-04-112-7/+2
|
* fix cache attribute from 08d132878d4e8818c8090169e6f0ece257ac4732Bananeweizen2012-04-101-0/+13
|
* missing file in merge request #1362Bananeweizen2012-04-091-0/+20
|
* Merge remote-tracking branch 'teschi/issue#1304'Bananeweizen2012-04-082-0/+151
|\ | | | | | | | | Conflicts: main/src/cgeo/geocaching/maps/CGeoMap.java
| * Support different modes of operation on LastRecentlyUsedMapteschi2012-04-032-0/+168
| | | | | | | | Added a Set interface for the LastRecentlyUsedMap Changed CGeoMap to use the LastRecentlyUsedSet as its caches-cache
* | more unit test for cache filtersBananeweizen2012-04-078-0/+238
| | | | | | | | * also fix cache equality for caches with empty geocodes (as used in some tests)
* | refactoring: more static code analysis cleanupsBananeweizen2012-04-026-28/+29
| |
* | Merge remote-tracking branch 'upstream/release' into upstreamSamuel Tardieu2012-04-011-0/+14
|\ \ | |/ |/| | | | | | | | | | | | | | | Fixes and features have been implemented on the release branch. Merge them early enough to avoid dealing with huge conflicts later. Conflicts: main/src/cgeo/geocaching/Settings.java main/src/cgeo/geocaching/compatibility/Compatibility.java main/src/cgeo/geocaching/maps/CGeoMap.java
| * Add test for #1332Samuel Tardieu2012-04-011-0/+14
| |
| * Fixed date format handling in testsrsudev2012-03-291-10/+20
| |
* | Fixed date format handling in testsrsudev2012-03-291-10/+20
| |
* | Merge pull request #1324 from campbeb/fix1314Bananeweizen2012-03-241-0/+10
|\ \ | | | | | | Fix #1314 - Store OC caches to database on load and mark as detailed
| * | Store OC caches to database on load and mark as detailedcampbeb2012-03-231-0/+10
| |/
* | refactoring: more encapsulation in SearchResultBananeweizen2012-03-244-4/+74
|/
* fix #1310: Crash while opening an unpublished cacheBananeweizen2012-03-211-4/+19
|
* fix #1281: .gpx import fails to recognize most caches in TX ChallengeBananeweizen2012-03-201-0/+6
| | | package
* Unit test for #1268blafoo2012-03-181-3/+16
|
* static code analysis and other fixesBananeweizen2012-03-182-2/+2
| | | | | | | * NumberParsingExceptions, NullPointerExceptions * StringBuilder instead of StringBuffer * access rights * interfaces instead of classes * ...
* Non-reliable coords for Basic Members. Fixes #1285blafoo2012-03-171-18/+16
|
* Unit test fixblafoo2012-03-161-2/+1
|
* Request further details when tapping on a cache in Live Map. Fixes #1256blafoo2012-03-163-29/+59
|
* Update of tests due to new Live Map strategy. Fixes #1242blafoo2012-03-131-4/+6
|
* Tests for #1262blafoo2012-03-121-13/+43
|
* fix #1262: icon decoding does not work wellBananeweizen2012-03-103-81/+76
|
* refactoring: first part of removing cgBaseBananeweizen2012-03-106-14/+15
| | | | | | | * extract network stuff (non GC related) * extract GC login stuff * move UI related pieces to activities * to do: move parsing and searching to better places, remove cgBase completely afterwards
* #1236: adapt unit testsBananeweizen2012-03-091-1/+27
| | | | * previous tests didn't recognize cache page with error output * have new unit test for cache with errors
* refactoring: make JSON parsing more robust by using a regexBananeweizen2012-03-081-0/+14
|
* Live Map strategy. Closes #1183blafoo2012-03-072-20/+31
|