Changeset 6949 in josm for trunk/test/unit/org
- Timestamp:
- 2014-03-30T01:11:39+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerTest.java
r6881 r6949 75 75 LinkedHashSet<String> assertionErrors = new LinkedHashSet<String>(); 76 76 for (final MapCSSTagChecker.TagCheck check : c.checks) { 77 System.out.println("Check: "+check); 77 78 for (final Map.Entry<String, Boolean> i : check.assertions.entrySet()) { 79 System.out.println("- Assertion: "+i); 78 80 final OsmPrimitive p = TestUtils.createPrimitive(i.getKey()); 79 81 final boolean isError = Utils.exists(c.getErrorsForPrimitive(p, true), new Predicate<TestError>() { … … 93 95 } 94 96 assertTrue("not all assertions included in the tests are met", assertionErrors.isEmpty()); 95 96 97 } 97 98 }
Note:
See TracChangeset
for help on using the changeset viewer.