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

Last change on this file since 3989 was 3988, checked in by bastiK, 13 years ago

added tests (patch by anonymous, see #6107)

File size: 754 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;
8
9@RunWith(Suite.class)
10@Suite.SuiteClasses([
11 LabelCompositionStrategyTest.class,
12 MapCSSWithExtendedTextDirectivesTest.class
13])
14public class AllMappaintTests extends TestCase{}
15
16// License: GPL. For details, see LICENSE file.
17package org.openstreetmap.josm.gui.mappaint
18
19import junit.framework.TestCase;
20
21import org.junit.runner.RunWith;
22import org.junit.runners.Suite;
23
24@RunWith(Suite.class)
25@Suite.SuiteClasses([
26 LabelCompositionStrategyTest.class,
27 MapCSSWithExtendedTextDirectivesTest.class
28])
29public class AllMappaintTests extends TestCase{}
30
Note: See TracBrowser for help on using the repository browser.