Changeset 32593 in osm for applications/editors/josm/plugins/mapillary/test
- Timestamp:
- 2016-07-06T17:16:53+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/ImageUtilsTest.java
r32383 r32593 1 // License: GPL. For details, see LICENSE file. 1 2 package org.openstreetmap.josm.plugins.mapillary.utils; 2 3 -
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryURLTest.java
r32069 r32593 1 // License: GPL. For details, see LICENSE file. 1 2 package org.openstreetmap.josm.plugins.mapillary.utils; 2 3 … … 26 27 } 27 28 28 @Test(expected =IllegalArgumentException.class)29 @Test(expected = IllegalArgumentException.class) 29 30 public void testIllegalBrowseEditURL() { 30 31 MapillaryURL.browseEditURL(null); 31 32 } 32 33 33 @Test(expected =IllegalArgumentException.class)34 @Test(expected = IllegalArgumentException.class) 34 35 public void testIllegalBrowseEditURL2() { 35 36 MapillaryURL.browseEditURL("123456789012345678901"); 36 37 } 37 38 38 @Test(expected =IllegalArgumentException.class)39 @Test(expected = IllegalArgumentException.class) 39 40 public void testIllegalBrowseEditURL3() { 40 41 MapillaryURL.browseEditURL("12345678901234567890123"); 41 42 } 42 43 43 @Test(expected =IllegalArgumentException.class)44 @Test(expected = IllegalArgumentException.class) 44 45 public void testIllegalBrowseEditURL4() { 45 46 MapillaryURL.browseEditURL("123456789012345678901+"); … … 54 55 } 55 56 56 @Test(expected =IllegalArgumentException.class)57 @Test(expected = IllegalArgumentException.class) 57 58 public void testIllegalBrowseImageURL() { 58 59 MapillaryURL.browseImageURL(null); 59 60 } 60 61 61 @Test(expected =IllegalArgumentException.class)62 @Test(expected = IllegalArgumentException.class) 62 63 public void testIllegalBrowseImageURL2() { 63 64 MapillaryURL.browseImageURL("123456789012345678901"); 64 65 } 65 66 66 @Test(expected =IllegalArgumentException.class)67 @Test(expected = IllegalArgumentException.class) 67 68 public void testIllegalBrowseImageURL3() { 68 69 MapillaryURL.browseImageURL("12345678901234567890123"); 69 70 } 70 71 71 @Test(expected =IllegalArgumentException.class)72 @Test(expected = IllegalArgumentException.class) 72 73 public void testIllegalBrowseImageURL4() { 73 74 MapillaryURL.browseImageURL("123456789012345678901+"); … … 212 213 } 213 214 assertTrue( 214 expectedParams[exIndex] + " was expected in the query string of " + actualUrl.toString() + " but wasn't there." 215 expectedParams[exIndex] + " was expected in the query string of " + actualUrl.toString() + " but wasn't there.", 215 216 parameterIsPresent 216 217 ); -
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/MapillaryUtilsTest.java
r31799 r32593 1 // License: GPL. For details, see LICENSE file. 1 2 package org.openstreetmap.josm.plugins.mapillary.utils; 2 3 -
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/PluginStateTest.java
r31972 r32593 1 // License: GPL. For details, see LICENSE file. 1 2 package org.openstreetmap.josm.plugins.mapillary.utils; 2 3 -
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/TestUtil.java
r32374 r32593 1 // License: GPL. For details, see LICENSE file. 1 2 package org.openstreetmap.josm.plugins.mapillary.utils; 2 3
Note:
See TracChangeset
for help on using the changeset viewer.