Changeset 10222 in josm for trunk/test/unit/org/openstreetmap/josm/data/osm
- Timestamp:
- 2016-05-15T21:14:06+02:00 (10 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/data/osm
- Files:
-
- 5 edited
-
ChangesetCacheTest.groovy (modified) (6 diffs)
-
FilterTest.java (modified) (1 diff)
-
MultipolygonBuilderTest.java (modified) (2 diffs)
-
OsmPrimitiveKeyHandlingTest.java (modified) (2 diffs)
-
RelationTest.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/osm/ChangesetCacheTest.groovy
r8510 r10222 9 9 10 10 @Test 11 public void test _Constructor() {11 public void testConstructor() { 12 12 ChangesetCache cache = ChangesetCache.getInstance() 13 13 assert cache != null … … 15 15 16 16 @Test 17 public void test _addAndRemoveListeners() {17 public void testAddAndRemoveListeners() { 18 18 ChangesetCache cache = ChangesetCache.getInstance() 19 19 cache.clear() … … 38 38 39 39 @Test 40 public void update _get_remove_cycle() {40 public void updateGetRemoveCycle() { 41 41 ChangesetCache cache = ChangesetCache.getInstance() 42 42 cache.clear() … … 97 97 98 98 @Test 99 public void fireingEvents _AddAChangeset() {99 public void fireingEventsAddAChangeset() { 100 100 ChangesetCache cache = ChangesetCache.getInstance() 101 101 cache.clear() … … 118 118 119 119 @Test 120 public void fireingEvents _UpdateChangeset() {120 public void fireingEventsUpdateChangeset() { 121 121 ChangesetCache cache = ChangesetCache.getInstance() 122 122 cache.clear() … … 141 141 142 142 @Test 143 public void fireingEvents _RemoveChangeset() {143 public void fireingEventsRemoveChangeset() { 144 144 ChangesetCache cache = ChangesetCache.getInstance() 145 145 cache.clear() -
trunk/test/unit/org/openstreetmap/josm/data/osm/FilterTest.java
r9214 r10222 161 161 break; 162 162 } 163 default: throw new AssertionError(); 163 164 } 164 165 -
trunk/test/unit/org/openstreetmap/josm/data/osm/MultipolygonBuilderTest.java
r9666 r10222 14 14 import org.openstreetmap.josm.io.OsmReader; 15 15 16 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 17 16 18 /** 17 19 * Unit tests of the {@code MultipolygonBuilder} class. … … 23 25 */ 24 26 @Rule 27 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 25 28 public Timeout globalTimeout = Timeout.seconds(15); 26 29 -
trunk/test/unit/org/openstreetmap/josm/data/osm/OsmPrimitiveKeyHandlingTest.java
r9459 r10222 10 10 import org.openstreetmap.josm.JOSMFixture; 11 11 import org.openstreetmap.josm.data.coor.LatLon; 12 13 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 12 14 13 15 /** … … 72 74 */ 73 75 @Test 76 @SuppressFBWarnings(value = "DM_STRING_CTOR", justification = "test that equals is used and not ==") 74 77 public void remove() { 75 78 Node n = new Node(); -
trunk/test/unit/org/openstreetmap/josm/data/osm/RelationTest.java
r9716 r10222 34 34 35 35 @Test 36 public void testB Box() {36 public void testBbox() { 37 37 DataSet ds = new DataSet(); 38 38
Note:
See TracChangeset
for help on using the changeset viewer.
