Changeset 7087 in josm for trunk/test/unit/org/openstreetmap
- Timestamp:
- 2014-05-09T11:42:57+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/io/OsmChangesetContentParserTest.groovy
r7086 r7087 18 18 class OsmChangesetContentParserTest { 19 19 final shouldFail = new GroovyTestCase().&shouldFail 20 20 21 21 @Test 22 22 public void test_Constructor() { … … 25 25 // should be OK 26 26 parser = new OsmChangesetContentParser(new ByteArrayInputStream("".bytes)) 27 28 shouldFail(IllegalArgumentException) { 29 parser = new OsmChangesetContentParser(null) 30 } 27 28 shouldFail(IllegalArgumentException) { 29 parser = new OsmChangesetContentParser((String) null) 30 } 31 32 shouldFail(IllegalArgumentException) { 33 parser = new OsmChangesetContentParser((InputStream) null) 34 } 31 35 } 32 36
Note:
See TracChangeset
for help on using the changeset viewer.