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

Last change on this file since 9585 was 7938, checked in by bastiK, 9 years ago

add more subversion property svn:eol=native

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