Changeset 18870 in josm for trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerJOSMTooOldTest.java
- Timestamp:
- 2023-10-16T15:19:07+02:00 (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/plugins/PluginHandlerJOSMTooOldTest.java
r18694 r18870 18 18 import java.util.stream.Collectors; 19 19 20 import com.github.tomakehurst.wiremock.client.WireMock;21 import com.github.tomakehurst.wiremock.junit5.WireMockExtension;22 import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo;23 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;24 20 import org.junit.jupiter.api.BeforeEach; 25 21 import org.junit.jupiter.api.Test; … … 29 25 import org.openstreetmap.josm.gui.MainApplication; 30 26 import org.openstreetmap.josm.spi.preferences.Config; 31 import org.openstreetmap.josm.testutils.JOSMTestRules;32 27 import org.openstreetmap.josm.testutils.PluginServer; 33 28 import org.openstreetmap.josm.testutils.annotations.AssumeRevision; 34 29 import org.openstreetmap.josm.testutils.annotations.FullPreferences; 30 import org.openstreetmap.josm.testutils.annotations.Main; 35 31 import org.openstreetmap.josm.testutils.mockers.ExtendedDialogMocker; 36 32 import org.openstreetmap.josm.testutils.mockers.HelpAwareOptionPaneMocker; 33 34 import com.github.tomakehurst.wiremock.client.WireMock; 35 import com.github.tomakehurst.wiremock.junit5.WireMockExtension; 36 import com.github.tomakehurst.wiremock.junit5.WireMockRuntimeInfo; 37 37 38 38 /** … … 41 41 @AssumeRevision("Revision: 6000\n") 42 42 @FullPreferences 43 @Main 43 44 class PluginHandlerJOSMTooOldTest { 44 /**45 * Setup test.46 */47 @RegisterExtension48 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")49 static JOSMTestRules test = new JOSMTestRules().main();50 51 45 /** 52 46 * Plugin server mock.
Note:
See TracChangeset
for help on using the changeset viewer.