source: josm/trunk/test/unit/org/openstreetmap/josm/gui/mappaint/AllMappaintTests.groovy@ 9666

Last change on this file since 9666 was 9666, checked in by stoecker, 8 years ago

see #12410 fix style of tests

  • Property svn:eol-style set to native
File size: 466 bytes
RevLine 
[3988]1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint
3
[4069]4import junit.framework.TestCase
[3988]5
[4069]6import org.junit.runner.RunWith
7import org.junit.runners.Suite
8import org.openstreetmap.josm.gui.mappaint.mapcss.AllMapCSSTests
[3988]9
10@RunWith(Suite.class)
11@Suite.SuiteClasses([
12 LabelCompositionStrategyTest.class,
[4069]13 MapCSSWithExtendedTextDirectivesTest.class,
14 AllMapCSSTests.class
[9666]15
[3988]16])
17public class AllMappaintTests extends TestCase{}
18
Note: See TracBrowser for help on using the repository browser.