Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/tools/template_engine/TemplateEntryTest.java
- Timestamp:
- 2020-10-28T20:41:00+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/template_engine/TemplateEntryTest.java
r14100 r17275 5 5 6 6 import org.junit.Assert; 7 import org.junit. Rule;8 import org.junit.Test; 7 import org.junit.jupiter.api.extension.RegisterExtension; 8 import org.junit.jupiter.api.Test; 9 9 import org.openstreetmap.josm.TestUtils; 10 10 import org.openstreetmap.josm.testutils.JOSMTestRules; … … 18 18 * Unit tests of {@link TemplateEntry} class. 19 19 */ 20 publicclass TemplateEntryTest {20 class TemplateEntryTest { 21 21 22 22 /** 23 23 * Setup rule. 24 24 */ 25 @R ule25 @RegisterExtension 26 26 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 27 27 public JOSMTestRules test = new JOSMTestRules(); … … 31 31 */ 32 32 @Test 33 publicvoid testEqualsContract() {33 void testEqualsContract() { 34 34 TestUtils.assumeWorkingEqualsVerifier(); 35 35 Set<Class<? extends TemplateEntry>> templates = TestUtils.getJosmSubtypes(TemplateEntry.class);
Note:
See TracChangeset
for help on using the changeset viewer.
