Changeset 9666 in josm for trunk/test/unit/org
- Timestamp:
- 2016-01-29T09:59:30+01:00 (9 years ago)
- Location:
- trunk/test/unit/org/openstreetmap/josm/gui/mappaint
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/AllMappaintTests.groovy
r7938 r9666 13 13 MapCSSWithExtendedTextDirectivesTest.class, 14 14 AllMapCSSTests.class 15 15 16 16 ]) 17 17 public class AllMappaintTests extends TestCase{} -
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/ParsingLinkSelectorTest.groovy
r7068 r9666 14 14 JOSMFixture.createUnitTestFixture().init() 15 15 } 16 16 17 17 @Test 18 18 public void parseEmptyChildSelector() { … … 21 21 """ 22 22 MapCSSStyleSource source = new MapCSSStyleSource(css) 23 source.loadStyleSource() 23 source.loadStyleSource() 24 24 assert source.rules.size() == 1 25 25 } 26 26 27 27 @Test 28 28 public void parseEmptyParentSelector() { … … 34 34 assert source.rules.size() == 1 35 35 } 36 37 36 37 38 38 @Test 39 39 public void parseChildSelectorWithKeyValueCondition() { … … 45 45 assert source.rules.size() == 1 46 46 } 47 47 48 48 @Test 49 49 public void parseChildSelectorWithKeyCondition() {
Note:
See TracChangeset
for help on using the changeset viewer.