Changeset 30365 in osm for applications/editors/josm/plugins/turnrestrictions/test/src
- Timestamp:
- 2014-03-24T22:35:16+01:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/turnrestrictions/test/src/org/openstreetmap/josm/plugins/turnrestrictions
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnrestrictions/test/src/org/openstreetmap/josm/plugins/turnrestrictions/AllUnitTests.java
r23571 r30365 7 7 @RunWith(Suite.class) 8 8 @Suite.SuiteClasses({ 9 10 9 AllEditorTests.class, 10 TurnRestrictionBuilderTest.class 11 11 }) 12 12 public class AllUnitTests {} -
applications/editors/josm/plugins/turnrestrictions/test/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/AllEditorTests.java
r23571 r30365 8 8 @RunWith(Suite.class) 9 9 @Suite.SuiteClasses({ 10 11 12 13 14 15 10 JosmSelectionListModelTest.class, 11 TurnRestrictionEditorModelUnitTest.class, 12 TurnRestrictionLegEditorUnitTest.class, 13 TurnRestrictionTypeRendererTest.class, 14 TurnRestrictionTypeTest.class, 15 ExceptValueModelTest.class 16 16 }) 17 17 public class AllEditorTests extends TestCase{} -
applications/editors/josm/plugins/turnrestrictions/test/src/org/openstreetmap/josm/plugins/turnrestrictions/fixtures/JOSMFixture.java
r28901 r30365 69 69 // 70 70 String url = OsmApi.getOsmApi().getBaseUrl().toLowerCase().trim(); 71 if (url.startsWith("http://www.openstreetmap.org") 72 || url.startsWith("http://api.openstreetmap.org")) {71 if (url.startsWith("http://www.openstreetmap.org") || url.startsWith("http://api.openstreetmap.org") 72 || url.startsWith("https://www.openstreetmap.org") || url.startsWith("https://api.openstreetmap.org")) { 73 73 fail(MessageFormat.format("configured server url ''{0}'' seems to be a productive url, aborting.", url)); 74 74 }
Note:
See TracChangeset
for help on using the changeset viewer.