Changeset 6920 in josm for trunk/test/unit/org/openstreetmap/josm/data
- Timestamp:
- 2014-03-21T17:31:18+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/validation/tests/OpeningHourTestTest.java
r6881 r6920 43 43 public void testCheckOpeningHourSyntax1() throws Exception { 44 44 final String key = "opening_hours"; 45 // frequently used tags according to http://taginfo.openstreetmap.org/keys/opening_hours#values 45 // frequently used tags according to https://taginfo.openstreetmap.org/keys/opening_hours#values 46 46 assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "24/7"), isEmpty()); 47 47 assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "Mo-Fr 08:30-20:00"), isEmpty()); … … 117 117 public void testCheckServiceTimeSyntax1() throws Exception { 118 118 final String key = "service_times"; 119 // frequently used tags according to http://taginfo.openstreetmap.org/keys/service_times#values 119 // frequently used tags according to https://taginfo.openstreetmap.org/keys/service_times#values 120 120 assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "Su 10:00", OpeningHourTest.CheckMode.BOTH), isEmpty()); 121 121 assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "automatic", OpeningHourTest.CheckMode.BOTH), not(isEmpty())); … … 131 131 public void testCheckCollectionTimeSyntax1() throws Exception { 132 132 final String key = "collection_times"; 133 // frequently used tags according to http://taginfo.openstreetmap.org/keys/collection_times#values 133 // frequently used tags according to https://taginfo.openstreetmap.org/keys/collection_times#values 134 134 assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "Mo-Sa 09:00", OpeningHourTest.CheckMode.BOTH), isEmpty()); 135 135 assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "fixme", OpeningHourTest.CheckMode.BOTH), not(isEmpty()));
Note:
See TracChangeset
for help on using the changeset viewer.
