Changeset 8509 in josm for trunk/test/unit/org/openstreetmap/josm/tools/template_engine
- Timestamp:
- 2015-06-20T14:36:00+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/tools/template_engine/TemplateEngineTest.java
r7937 r8509 36 36 public void testVariable() throws ParseError { 37 37 TemplateParser parser = new TemplateParser("abc{var}\\{ef\\$\\{g"); 38 ReflectionAssert.assertReflectionEquals(CompoundTemplateEntry.fromArray(new StaticText("abc"), new Variable("var"), new StaticText("{ef${g")), parser.parse()); 38 ReflectionAssert.assertReflectionEquals(CompoundTemplateEntry.fromArray(new StaticText("abc"), 39 new Variable("var"), new StaticText("{ef${g")), parser.parse()); 39 40 } 40 41
Note:
See TracChangeset
for help on using the changeset viewer.