source: josm/trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/AllMapCSSTests.java@ 14068

Last change on this file since 14068 was 14068, checked in by Don-vip, 6 years ago

checkstyle/sonarqube

  • Property svn:eol-style set to native
File size: 436 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint.mapcss;
3
4import org.junit.runner.RunWith;
5import org.junit.runners.Suite;
6
7/**
8 * All MapCSS tests.
9 */
10@RunWith(Suite.class)
11@Suite.SuiteClasses({
12 KeyValueConditionTest.class,
13 ParsingLinkSelectorTest.class,
14 KeyConditionTest.class,
15 MapCSSParserTest.class,
16 ChildOrParentSelectorTest.class
17})
18public class AllMapCSSTests {
19
20}
Note: See TracBrowser for help on using the repository browser.