Changeset 4069 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2011-05-02T23:47:19+02:00 (14 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/gui/mappaint
- Files:
-
- 6 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/AllMappaintTests.groovy
r3990 r4069 2 2 package org.openstreetmap.josm.gui.mappaint 3 3 4 import junit.framework.TestCase ;4 import junit.framework.TestCase 5 5 6 import org.junit.runner.RunWith; 7 import org.junit.runners.Suite; 6 import org.junit.runner.RunWith 7 import org.junit.runners.Suite 8 import org.openstreetmap.josm.gui.mappaint.mapcss.AllMapCSSTests 8 9 9 10 @RunWith(Suite.class) 10 11 @Suite.SuiteClasses([ 11 12 LabelCompositionStrategyTest.class, 12 MapCSSWithExtendedTextDirectivesTest.class 13 MapCSSWithExtendedTextDirectivesTest.class, 14 AllMapCSSTests.class 15 13 16 ]) 14 17 public class AllMappaintTests extends TestCase{} -
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/MapCSSWithExtendedTextDirectivesTest.groovy
r3991 r4069 2 2 package org.openstreetmap.josm.gui.mappaint 3 3 4 import java.awt.Color ;4 import java.awt.Color 5 5 6 import org.junit.*; 7 import org.openstreetmap.josm.fixtures.JOSMFixture 8 import org.openstreetmap.josm.gui.mappaint.LabelCompositionStrategy.DeriveLabelFromNameTagsCompositionStrategy 9 import org.openstreetmap.josm.gui.mappaint.LabelCompositionStrategy.StaticLabelCompositionStrategy 10 import org.openstreetmap.josm.gui.mappaint.LabelCompositionStrategy.TagLookupCompositionStrategy 6 import org.junit.* 7 import org.openstreetmap.josm.fixtures.JOSMFixture 8 import org.openstreetmap.josm.gui.mappaint.LabelCompositionStrategy.DeriveLabelFromNameTagsCompositionStrategy 9 import org.openstreetmap.josm.gui.mappaint.LabelCompositionStrategy.TagLookupCompositionStrategy 11 10 class MapCSSWithExtendedTextDirectivesTest { 12 11
Note:
See TracChangeset
for help on using the changeset viewer.