}
@Test
public void testAnotherLayout() throws IOException, ParseException {
String src = readFile("JapidSample/app/japidviews/_layouts/TagLayout.html");
JapidTemplate bt = new JapidTemplate("japidviews/_layouts/TagLayout.html", src);
JapidAbstractCompiler cp = new JapidLayoutCompiler();
cp.compile(bt);
String srccode = bt.javaSource;
System.out.println(srccode);
CompilationUnit cu = JavaSyntaxTool.parse(srccode);