Changeset 11931 in josm for trunk/test/unit/org
- Timestamp:
- 2017-04-16T20:45:20+02:00 (8 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 5 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/projection/CustomProjectionTest.java
r10870 r11931 10 10 import org.junit.Rule; 11 11 import org.junit.Test; 12 import org.openstreetmap.josm.data.coor.LatLon; 13 import org.openstreetmap.josm.data.projection.CustomProjection.Polarity; 12 14 import org.openstreetmap.josm.testutils.JOSMTestRules; 13 15 … … 71 73 }); 72 74 } 75 76 /** 77 * Test {@link CustomProjection.Polarity}. 78 */ 79 @Test 80 public void testPolarity() { 81 assertEquals(LatLon.NORTH_POLE, Polarity.NORTH.getLatLon()); 82 assertEquals(LatLon.SOUTH_POLE, Polarity.SOUTH.getLatLon()); 83 } 73 84 }
Note:
See TracChangeset
for help on using the changeset viewer.