Changeset 34309 in osm for applications/editors/josm/plugins/indoorhelper/test/unit
- Timestamp:
- 2018-06-17T17:51:18+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/indoorhelper/test/unit/model
- Files:
-
- 2 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/test/unit/model/PresetCounterTest.java
r34308 r34309 1 // License: GPL. For details, see LICENSE file. 2 package model; 3 1 4 import static org.junit.Assert.assertEquals; 2 5 … … 6 9 import org.junit.Test; 7 10 8 import model.PresetCounter;9 11 import model.TagCatalog.IndoorObject; 10 12 13 /** 14 * Unit tests of {@link PresetCounter} class. 15 */ 11 16 public class PresetCounterTest { 12 17 … … 36 41 expectedList.add(IndoorObject.STEPS); 37 42 38 39 43 //assertion 40 44 assertEquals(expectedList.get(0), actualList.get(0)); … … 42 46 assertEquals(expectedList.get(2), actualList.get(2)); 43 47 assertEquals(expectedList.get(3), actualList.get(3)); 44 45 46 48 } 47 49 }
Note:
See TracChangeset
for help on using the changeset viewer.