@Test
public void compiledSequenceSample() throws Exception {
String input = "PREFIX${<h1>,address(NIX),</h1>;long(full)}SUFFIX";
String interpretedOutput = newEngine().transform(input, DEFAULT_MODEL);
String compiledOutput = new SampleCompiledSequenceTemplate(newEngine())
.transform(DEFAULT_MODEL, DEFAULT_LOCALE, MODEL_ADAPTOR, null);
assertEquals(interpretedOutput, compiledOutput);
}