()
| 506 | } |
| 507 | |
| 508 | public static void test3() throws IOException |
| 509 | { |
| 510 | String templates = "main() ::= <<\n"+ |
| 511 | "Foo: <{bar};format=\"lower\">\n" +">>\n"; |
| 512 | String tmpdir = System.getProperty("java.io.tmpdir"); |
| 513 | writeFile(tmpdir, "t.stg", templates); |
| 514 | STGroup group = new STGroupFile(tmpdir+"/"+"t.stg"); |
| 515 | ST st = group.getInstanceOf("main"); |
| 516 | st.inspect(); |
| 517 | } |
| 518 | |
| 519 | public static void test4() throws IOException |
| 520 | { |
no test coverage detected