Changeset 14746 in josm for trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParserTestIT.java
- Timestamp:
- 2019-01-27T22:26:35+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParserTestIT.java
r14235 r14746 2 2 package org.openstreetmap.josm.gui.mappaint.mapcss; 3 3 4 import java.io.IOException; 5 import java.net.URL; 6 4 import org.junit.Ignore; 7 5 import org.junit.Rule; 8 6 import org.junit.Test; … … 26 24 /** 27 25 * Checks Kothic stylesheets 28 * @throws IOException if an I/O error occurs29 26 */ 30 27 @Test 31 public void testKothicStylesheets() throws IOException { 32 new MapCSSParser(new URL("https://raw.githubusercontent.com/kothic/kothic/master/src/styles/default.mapcss").openStream(), "UTF-8"); 33 new MapCSSParser(new URL("https://raw.githubusercontent.com/kothic/kothic/master/src/styles/mapink.mapcss").openStream(), "UTF-8"); 28 @Ignore("parsing fails") 29 public void testKothicStylesheets() { 30 new MapCSSStyleSource("https://raw.githubusercontent.com/kothic/kothic/master/src/styles/default.mapcss").loadStyleSource(); 31 new MapCSSStyleSource("https://raw.githubusercontent.com/kothic/kothic/master/src/styles/mapink.mapcss").loadStyleSource(); 34 32 } 35 33 }
Note:
See TracChangeset
for help on using the changeset viewer.
