@Test
public void compiledIfSample() throws Exception {
String input = "${if !bean.trueCond}${address}${else}NIX${end}";
String interpretedOutput = newEngine().transform(input, DEFAULT_MODEL);
String compiledOutput = new SampleIfEmptyFalseExpressionCompiledTemplate(
newEngine()).transform(DEFAULT_MODEL, DEFAULT_LOCALE,
MODEL_ADAPTOR, null);
assertEquals(interpretedOutput, compiledOutput);
}