// switch.ltp
public void testSwitch() {
final Map<String,Object> this_ = new HashMap<String,Object>();
this_.put("aa", new Integer(11));
TemplatesFacade env = new TestTemplatesFacade(new DefaultNavigationFactory(), new ClassTemplateLoader(getClass().getClassLoader(), TEMPLATES_LOCATION, TEMPLATES_CHARSET));
EvaluationContext context = new EvaluationContext(this_);
// test 1
String q = env.executeTemplate("switch.check1", context, null, null);
Assert.assertEquals("Yo", q);