Changeset 6881 in josm for trunk/test/unit/org/openstreetmap/josm/corrector
- Timestamp:
- 2014-02-24T17:49:12+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/corrector/ReverseWayTagCorrectorTest.java
r6471 r6881 6 6 import org.junit.Test; 7 7 import org.openstreetmap.josm.Main; 8 import org.openstreetmap.josm.data.Preferences;9 8 import org.openstreetmap.josm.data.osm.Tag; 10 9 … … 21 20 Main.initApplicationPreferences(); 22 21 } 23 22 24 23 /** 25 24 * Test of {@link ReverseWayTagCorrector.TagSwitcher#apply} method. … … 93 92 assertSwitch(new Tag("type", "drawdown"), new Tag("type", "drawdown")); 94 93 } 95 94 96 95 private void assertSwitch(Tag oldTag, Tag newTag) { 97 96 Assert.assertEquals(ReverseWayTagCorrector.TagSwitcher.apply(oldTag), newTag);
Note: See TracChangeset
for help on using the changeset viewer.