Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/command/conflict/DeletedStateConflictResolveCommandTest.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/command/conflict/DeletedStateConflictResolveCommandTest.java
r13079 r17275 2 2 package org.openstreetmap.josm.command.conflict; 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.data.conflict.Conflict; … … 20 20 * Unit tests of {@link DeletedStateConflictResolveCommand} class. 21 21 */ 22 publicclass DeletedStateConflictResolveCommandTest {22 class DeletedStateConflictResolveCommandTest { 23 23 24 24 /** 25 25 * Setup test. 26 26 */ 27 @R ule27 @RegisterExtension 28 28 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 29 29 public JOSMTestRules test = new JOSMTestRules(); … … 33 33 */ 34 34 @Test 35 publicvoid testEqualsContract() {35 void testEqualsContract() { 36 36 TestUtils.assumeWorkingEqualsVerifier(); 37 37 EqualsVerifier.forClass(DeletedStateConflictResolveCommand.class).usingGetClass()
Note:
See TracChangeset
for help on using the changeset viewer.
