1 | void testElementOrder() {↵ | | 1 | void testXml() throws Exception {↵
|
2 | expectLog("element.order", "Line 1Line 2");↵ | | 2 | executeJspCompile("testXml", "xml_jsp.java");↵
|
| | | 3 | }↵
|
|
|
| | | 4 | /**↵
|
| | | 5 | * try a keyword in a file↵
|
3 | }↵ | | 6 | ↵
|
| | | 7 | */↵
|
4 | public void testElementOrder2() {↵ | | 8 | public void testKeyword() throws Exception {↵
|
5 | expectLog("element.order2", "Line 1Line 2Line 3");↵ | | 9 | exec↵
|
| | | 10 | uteJspCompile("testKeyword", "default_jsp.java");↵
|
| | | 11 | }↵
|
|
|
| | | 12 | /**↵
|
| | | 13 | * what happens to 1nvalid-classname↵
|
6 | }↵ | | 14 | ↵
|
| | | 15 | */↵
|
7 | public void testAntTypeTest() {↵ | | 16 | public void testInvalidClassname() throws Exception {↵
|
8 | expectLog("antTypeTest", "↵ | | 17 | executeJspCompile("testInvalidClassname",↵
|
9 | ");↵ | | 18 | "_1nvalid_0002dclassname_jsp.java");↵
|
10 | | | 19 |
|