Changeset 14019 in josm for trunk/test/unit/org
- Timestamp:
- 2018-07-08T17:12:38+02:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 *-josm.xml 1 2 bin 2 3 bin2 4 bintest 5 build 6 build2 3 7 dist 4 build 8 foobar 9 hs_err_pid* 10 imagery_* 11 javadoc 12 junit*.properties 5 13 plugin-check 6 *-josm.xml 7 javadoc 14 taginfo-img 8 15 taginfo_*.json 9 taginfo-img 10 build2 11 junit*.properties 12 foobar 13 imagery_* 16 test_BLOCK_v2.* 14 17 validator-* 15 test_BLOCK_v2.*16 hs_err_pid*
-
- Property svn:ignore
-
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/ChildOrParentSelectorTest.groovy
r9214 r14019 20 20 class ChildOrParentSelectorTest { 21 21 static private Logger logger = Logger.getLogger(ChildOrParentSelectorTest.class.getName()); 22 23 def shouldFail = new GroovyTestCase().&shouldFail24 22 25 23 def DataSet ds; -
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/KeyConditionTest.groovy
r10837 r14019 2 2 package org.openstreetmap.josm.gui.mappaint.mapcss; 3 3 4 import static groovy.test.GroovyAssert.shouldFail 4 5 import static org.junit.Assert.* 5 6 … … 16 17 17 18 class KeyConditionTest { 18 19 def shouldFail = new GroovyTestCase().&shouldFail20 19 21 20 def DataSet ds; -
trunk/test/unit/org/openstreetmap/josm/gui/mappaint/mapcss/KeyValueConditionTest.groovy
r10837 r14019 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.gui.mappaint.mapcss; 3 4 import static groovy.test.GroovyAssert.shouldFail 3 5 4 6 import org.junit.* … … 15 17 import org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.MapCSSParser 16 18 17 18 19 class KeyValueConditionTest { 19 20 def shouldFail = new GroovyTestCase().&shouldFail21 20 22 21 def DataSet ds; -
trunk/test/unit/org/openstreetmap/josm/io/ChangesetQueryUrlParserTest.groovy
r11035 r14019 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.io 3 4 import static groovy.test.GroovyAssert.shouldFail 5 6 import java.time.OffsetDateTime 7 import java.time.ZoneOffset 3 8 4 9 import org.junit.Test … … 6 11 import org.openstreetmap.josm.io.ChangesetQuery.ChangesetQueryUrlParser 7 12 8 import java.time.OffsetDateTime9 import java.time.ZoneOffset10 11 13 class ChangesetQueryUrlParserTest { 12 final shouldFail = new GroovyTestCase().&shouldFail13 14 14 15 @Test -
trunk/test/unit/org/openstreetmap/josm/io/DiffResultProcessorTest.groovy
r10222 r14019 2 2 package org.openstreetmap.josm.io; 3 3 4 import static groovy.test.GroovyAssert.shouldFail 4 5 import static org.junit.Assert.* 5 6 … … 30 31 public void testParse_NOK_Cases() { 31 32 def DiffResultProcessor processor = new DiffResultProcessor([]) 32 33 final shouldFail = new GroovyTestCase().&shouldFail34 33 35 34 shouldFail(IllegalArgumentException) { -
trunk/test/unit/org/openstreetmap/josm/io/OsmChangeBuilderTest.groovy
r9214 r14019 1 1 package org.openstreetmap.josm.io; 2 2 3 import static groovy.test.GroovyAssert.shouldFail 3 4 import static org.junit.Assert.* 4 5 … … 38 39 def Changeset cs = new Changeset(1) 39 40 OsmChangeBuilder builder = new OsmChangeBuilder(cs) 40 41 final shouldFail = new GroovyTestCase().&shouldFail42 41 43 42 // should be OK -
trunk/test/unit/org/openstreetmap/josm/io/OsmChangesetContentParserTest.groovy
r8510 r14019 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.io; 3 4 import static groovy.test.GroovyAssert.shouldFail 3 5 4 6 import java.nio.charset.StandardCharsets … … 15 17 16 18 class OsmChangesetContentParserTest { 17 final shouldFail = new GroovyTestCase().&shouldFail18 19 19 20 @Test -
trunk/test/unit/org/openstreetmap/josm/io/ParseWithChangesetReaderTest.groovy
r8510 r14019 2 2 package org.openstreetmap.josm.io; 3 3 4 import static groovy.test.GroovyAssert.shouldFail 4 5 import static org.junit.Assert.* 5 6 … … 167 168 """ 168 169 169 final shouldFail = new GroovyTestCase().&shouldFail170 171 170 shouldFail(IllegalDataException) { 172 171 DataSet ds = getDataSet(doc) … … 184 183 </osm> 185 184 """ 186 187 final shouldFail = new GroovyTestCase().&shouldFail188 185 189 186 shouldFail(IllegalDataException) { … … 203 200 """ 204 201 205 final shouldFail = new GroovyTestCase().&shouldFail206 207 202 shouldFail(IllegalDataException) { 208 203 DataSet ds = getDataSet(doc)
Note:
See TracChangeset
for help on using the changeset viewer.