Changeset 10945 in josm for trunk/test/unit/org/openstreetmap/josm/corrector
- Timestamp:
- 2016-09-03T14:22:22+02:00 (8 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/corrector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/corrector/ReverseWayNoTagCorrectorTest.java
r9547 r10945 4 4 import static org.junit.Assert.assertEquals; 5 5 6 import org.junit. BeforeClass;6 import org.junit.Rule; 7 7 import org.junit.Test; 8 import org.openstreetmap.josm.JOSMFixture;9 8 import org.openstreetmap.josm.data.osm.Tag; 9 import org.openstreetmap.josm.testutils.JOSMTestRules; 10 11 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 10 12 11 13 /** … … 17 19 * Setup test. 18 20 */ 19 @BeforeClass 20 public static void setUp() { 21 JOSMFixture.createUnitTestFixture().init(); 22 } 21 @Rule 22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 23 public JOSMTestRules test = new JOSMTestRules(); 23 24 24 25 /** -
trunk/test/unit/org/openstreetmap/josm/corrector/ReverseWayTagCorrectorTest.java
r8180 r10945 3 3 4 4 import org.junit.Assert; 5 import org.junit. BeforeClass;5 import org.junit.Rule; 6 6 import org.junit.Test; 7 import org.openstreetmap.josm.JOSMFixture;8 7 import org.openstreetmap.josm.data.osm.Tag; 8 import org.openstreetmap.josm.testutils.JOSMTestRules; 9 10 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 9 11 10 12 /** … … 16 18 * Setup test. 17 19 */ 18 @BeforeClass 19 public static void setUp() { 20 JOSMFixture.createUnitTestFixture().init(); 21 } 20 @Rule 21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 22 public JOSMTestRules test = new JOSMTestRules(); 22 23 23 24 /**
Note:
See TracChangeset
for help on using the changeset viewer.