Changeset 30550 in osm for applications/editors/josm/plugins/graphview/test/unit/org
- Timestamp:
- 2014-08-04T02:45:06+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/graphview/test
- Files:
-
- 1 added
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/test
- Property svn:externals set to
-
Property svn:ignore
set to
build
jacoco.exec
report
-
applications/editors/josm/plugins/graphview/test/unit/org/openstreetmap/josm/plugins/graphview/core/access/AccessRulesetReaderTest.java
r23189 r30550 25 25 public void testReadAccessRuleset_valid_classes() throws IOException { 26 26 27 InputStream is = new FileInputStream("plugins/graphview/test/ files/accessRuleset_valid.xml");27 InputStream is = new FileInputStream("plugins/graphview/test/data/accessRuleset_valid.xml"); 28 28 AccessRuleset ruleset = AccessRulesetReader.readAccessRuleset(is); 29 29 assertNotNull(ruleset); … … 51 51 public void testReadAccessRuleset_valid_basetags() throws IOException { 52 52 53 InputStream is = new FileInputStream("plugins/graphview/test/ files/accessRuleset_valid.xml");53 InputStream is = new FileInputStream("plugins/graphview/test/data/accessRuleset_valid.xml"); 54 54 AccessRuleset ruleset = AccessRulesetReader.readAccessRuleset(is); 55 55 assertNotNull(ruleset); … … 67 67 public void testReadAccessRuleset_valid_implications() throws IOException { 68 68 69 InputStream is = new FileInputStream("plugins/graphview/test/ files/accessRuleset_valid.xml");69 InputStream is = new FileInputStream("plugins/graphview/test/data/accessRuleset_valid.xml"); 70 70 AccessRuleset ruleset = AccessRulesetReader.readAccessRuleset(is); 71 71 assertNotNull(ruleset); … … 107 107 return new MapBasedTagGroup(tagMap); 108 108 } 109 110 109 } -
applications/editors/josm/plugins/graphview/test/unit/org/openstreetmap/josm/plugins/graphview/core/util/TagConditionLogicTest.java
r23189 r30550 1 1 package org.openstreetmap.josm.plugins.graphview.core.util; 2 import static junit.framework.Assert.assertFalse;3 import static junit.framework.Assert.assertTrue;2 import static org.junit.Assert.assertFalse; 3 import static org.junit.Assert.assertTrue; 4 4 5 5 import java.util.Arrays; -
applications/editors/josm/plugins/graphview/test/unit/org/openstreetmap/josm/plugins/graphview/core/util/ValueStringParserTest.java
r23189 r30550 1 1 package org.openstreetmap.josm.plugins.graphview.core.util; 2 2 3 import static junit.framework.Assert.assertNull;3 import static org.junit.Assert.assertNull; 4 4 import static org.openstreetmap.josm.plugins.graphview.core.util.ValueStringParser.parseMeasure; 5 5 import static org.openstreetmap.josm.plugins.graphview.core.util.ValueStringParser.parseSpeed;
Note:
See TracChangeset
for help on using the changeset viewer.