}
@Test
public void testConstants() throws Exception {
setUp("exmlparser.config");
ExmlToModelParser exmlToModelParser = new ExmlToModelParser(getConfigClassRegistry());
ExmlModel model = exmlToModelParser.parse(getFile("/exmlparser/TestConstants.exml"));
Declaration aConstant = model.getConfigClass().getConstants().get(0);
Assert.assertEquals("A_CONSTANT", aConstant.getName());
Assert.assertEquals("\"One two three\"", aConstant.getValue());
Assert.assertEquals("String", aConstant.getType());
Assert.assertEquals("This is some constant", aConstant.getDescription());