Changeset 10966 in josm
- Timestamp:
- 2016-09-06T00:16:07+02:00 (8 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/MainTest.java
r10962 r10966 11 11 import javax.swing.UIManager; 12 12 13 import org.junit. BeforeClass;13 import org.junit.Rule; 14 14 import org.junit.Test; 15 15 import org.openstreetmap.josm.Main.DownloadParamType; 16 import org.openstreetmap.josm.testutils.JOSMTestRules; 16 17 17 18 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; … … 25 26 * Setup test. 26 27 */ 27 @BeforeClass 28 public static void setUp() { 29 JOSMFixture.createUnitTestFixture().init(); 30 } 28 @Rule 29 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 30 public JOSMTestRules test = new JOSMTestRules().platform(); 31 31 32 32 /** -
trunk/test/unit/org/openstreetmap/josm/actions/CreateMultipolygonActionTest.groovy
r10657 r10966 12 12 import org.openstreetmap.josm.tools.SubclassFilteredCollection 13 13 14 class CreateMultipolygonActionTest {14 public class CreateMultipolygonActionTest { 15 15 16 16 @BeforeClass -
trunk/test/unit/org/openstreetmap/josm/actions/PurgeActionTest.java
r10945 r10966 32 32 @Rule 33 33 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 34 public JOSMTestRules test = new JOSMTestRules().platform() ;34 public JOSMTestRules test = new JOSMTestRules().platform().commands(); 35 35 36 36 /**
Note:
See TracChangeset
for help on using the changeset viewer.