Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/data/osm/StorageTest.java
- Timestamp:
- 2020-10-28T20:41:00+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/osm/StorageTest.java
r13079 r17275 2 2 package org.openstreetmap.josm.data.osm; 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; 7 7 import org.openstreetmap.josm.testutils.JOSMTestRules; … … 14 14 * Unit tests for class {@link Storage}. 15 15 */ 16 publicclass StorageTest {16 class StorageTest { 17 17 18 18 /** 19 19 * Setup test. 20 20 */ 21 @R ule21 @RegisterExtension 22 22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 23 23 public JOSMTestRules test = new JOSMTestRules(); … … 27 27 */ 28 28 @Test 29 publicvoid testEqualsContract() {29 void testEqualsContract() { 30 30 TestUtils.assumeWorkingEqualsVerifier(); 31 31 EqualsVerifier.forClass(Storage.class).usingGetClass()
Note:
See TracChangeset
for help on using the changeset viewer.
