Changeset 17275 in josm for trunk/test/unit/org/openstreetmap/josm/actions/SessionLoadActionTest.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/actions/SessionLoadActionTest.java
r15070 r17275 2 2 package org.openstreetmap.josm.actions; 3 3 4 import static org.junit. Assert.assertFalse;4 import static org.junit.jupiter.api.Assertions.assertFalse; 5 5 6 import org.junit. Rule;7 import org.junit.Test; 6 import org.junit.jupiter.api.extension.RegisterExtension; 7 import org.junit.jupiter.api.Test; 8 8 import org.openstreetmap.josm.data.imagery.ImageryInfo; 9 9 import org.openstreetmap.josm.data.imagery.ImageryInfo.ImageryType; … … 16 16 * Unit tests for class {@link SessionLoadAction}. 17 17 */ 18 publicclass SessionLoadActionTest {18 class SessionLoadActionTest { 19 19 20 20 /** 21 21 * Setup test. 22 22 */ 23 @R ule23 @RegisterExtension 24 24 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 25 25 public JOSMTestRules test = new JOSMTestRules().main().projection(); … … 29 29 */ 30 30 @Test 31 publicvoid testTicket17702() {31 void testTicket17702() { 32 32 assertFalse(SessionLoadAction.Loader.addLayer(new TMSLayer(new ImageryInfo( 33 33 "Bing Карта (GLOBALCITY)",
Note:
See TracChangeset
for help on using the changeset viewer.
