source: josm/trunk/test/unit/org/openstreetmap/josm/gui/mappaint/AllMappaintTests.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: 452 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint;
3
4import org.junit.runner.RunWith;
5import org.junit.runners.Suite;
6import org.openstreetmap.josm.gui.mappaint.mapcss.AllMapCSSTests;
7
8/**
9 * All mappaint tests.
10 */
11@RunWith(Suite.class)
12@Suite.SuiteClasses({
13 LabelCompositionStrategyTest.class,
14 MapCSSWithExtendedTextDirectivesTest.class,
15 AllMapCSSTests.class
16})
17public class AllMappaintTests {
18
19}
Note: See TracBrowser for help on using the repository browser.