Changeset 16834 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2020-08-03T20:23:44+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/Tag2LinkTest.java
r16774 r16834 7 7 8 8 import org.junit.Assert; 9 import org.junit.Rule; 9 10 import org.junit.Test; 11 import org.openstreetmap.josm.testutils.JOSMTestRules; 12 13 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; 10 14 11 15 /** … … 23 27 Assert.assertEquals(Arrays.asList(expected), links); 24 28 } 29 30 /** 31 * Setup test. 32 */ 33 @Rule 34 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 35 public JOSMTestRules test = new JOSMTestRules().preferences(); 25 36 26 37 /**
Note:
See TracChangeset
for help on using the changeset viewer.