source: josm/trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParserTestIT.java@ 16909

Last change on this file since 16909 was 14746, checked in by simon04, 5 years ago

Refactoring: use StandardCharsets

  • Property svn:eol-style set to native
File size: 1.0 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint.mapcss;
3
4import org.junit.Ignore;
5import org.junit.Rule;
6import org.junit.Test;
7import org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.MapCSSParser;
8import org.openstreetmap.josm.testutils.JOSMTestRules;
9
10import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
11
12/**
13 * Integration tests of {@link MapCSSParser}.
14 */
15public class MapCSSParserTestIT {
16
17 /**
18 * Setup rule
19 */
20 @Rule
21 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
22 public JOSMTestRules test = new JOSMTestRules().https().projection();
23
24 /**
25 * Checks Kothic stylesheets
26 */
27 @Test
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();
32 }
33}
Note: See TracBrowser for help on using the repository browser.