Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/io/CertificateAmendmentTest.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/io/CertificateAmendmentTest.java
r16182 r17275 2 2 package org.openstreetmap.josm.io; 3 3 4 import org.junit. Rule;5 import org.junit.Test; 4 import org.junit.jupiter.api.extension.RegisterExtension; 5 import org.junit.jupiter.api.Test; 6 6 import org.openstreetmap.josm.testutils.JOSMTestRules; 7 7 … … 12 12 * Unit tests of {@link CertificateAmendment} class. 13 13 */ 14 publicclass CertificateAmendmentTest {14 class CertificateAmendmentTest { 15 15 16 16 /** 17 17 * Setup rule 18 18 */ 19 @R ule19 @RegisterExtension 20 20 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 21 21 public JOSMTestRules test = new JOSMTestRules(); … … 26 26 */ 27 27 @Test 28 publicvoid testUtilityClass() throws ReflectiveOperationException {28 void testUtilityClass() throws ReflectiveOperationException { 29 29 UtilityClassTestUtil.assertUtilityClassWellDefined(CertificateAmendment.class); 30 30 }
Note:
See TracChangeset
for help on using the changeset viewer.
