Changeset 12567 in josm for trunk/test
- Timestamp:
- 2017-08-04T00:31:45+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/actions/upload/ValidateUploadHookTest.java
r10960 r12567 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.actions.upload; 3 4 import static org.junit.Assert.assertTrue; 3 5 4 6 import org.junit.Rule; … … 19 21 @Rule 20 22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 21 public JOSMTestRules test = new JOSMTestRules().platform(). timeout(20000);23 public JOSMTestRules test = new JOSMTestRules().platform().fakeAPI(); 22 24 23 25 /** … … 26 28 @Test 27 29 public void testCheckUpload() { 28 new ValidateUploadHook().checkUpload(new APIDataSet()); 30 assertTrue(new ValidateUploadHook().checkUpload(new APIDataSet())); 29 31 } 30 32 }
Note:
See TracChangeset
for help on using the changeset viewer.