Changeset 14190 in josm for trunk/test/unit
- Timestamp:
- 2018-08-28T21:29:03+02:00 (7 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/TestUtils.java
r14158 r14190 533 533 return new Reflections("org.openstreetmap.josm").getSubTypesOf(superClass); 534 534 } 535 536 /** 537 * Determines if OSM DEV_API credential have been provided. Required for functional tests. 538 * @return {@code true} if {@code osm.username} and {@code osm.password} have been defined on the command line 539 */ 540 public static boolean areCredentialsProvided() { 541 return Utils.getSystemProperty("osm.username") != null && Utils.getSystemProperty("osm.password") != null; 542 } 535 543 } -
trunk/test/unit/org/openstreetmap/josm/tools/PlatformHookOsxTest.java
r14138 r14190 6 6 import static org.junit.Assert.assertNotNull; 7 7 import static org.junit.Assert.assertTrue; 8 import static org.junit.Assert.fail;9 8 10 9 import java.io.File; 11 10 import java.io.IOException; 12 11 12 import org.junit.Assume; 13 13 import org.junit.BeforeClass; 14 14 import org.junit.Test; … … 63 63 @Test 64 64 public void testOpenUrl() throws IOException { 65 if (!PlatformManager.isPlatformWindows()) { 66 hook.openUrl(Config.getUrls().getJOSMWebsite()); 67 } else { 68 try { 69 hook.openUrl(Config.getUrls().getJOSMWebsite()); 70 fail("Expected IOException"); 71 } catch (IOException e) { 72 Logging.info(e.getMessage()); 73 } 74 } 65 Assume.assumeTrue(PlatformManager.isPlatformOsx()); 66 hook.openUrl(Config.getUrls().getJOSMWebsite()); 75 67 } 76 68
Note:
See TracChangeset
for help on using the changeset viewer.