1 | void testSimple() {↵ | | 1 | void testXml() throws Exception {↵
|
2 | expectLog("simple", "/abc/a");↵ | | 2 | executeJspCompile("testXml", "xml_jsp.java");↵
|
3 | }↵ | | 3 | }↵
|
|
|
4 | public void testDouble()↵ | | 4 | /**↵
|
| | | 5 | * try a keyword in a file↵
|
| | | 6 | */↵
|
5 | {↵ | | 7 | public void testKeyword() throws Exception {↵
|
6 | expectLog("double", "/abc/a:/abc/b");↵ | | 8 | exec↵
|
7 | }↵ | | |
|
|
8 | public void testNested()↵ | | 9 | uteJspCompile("testKeyword", "default_jsp.java");↵
|
| | | 10 | }↵
|
|
|
| | | 11 | /**↵
|
| | | 12 | * what happens to 1nvalid-classname↵
|
| | | 13 | */↵
|
9 | {↵ | | 14 | public void testInvalidClassname() throws Exception {↵
|
10 | expectLog("nested", "/abc/a:/abc/b↵ | | 15 | executeJspCompile("testInvalidClassname",↵
|
11 | ");↵ | | 16 | "_1nvalid_0002dclassname_jsp.java");↵
|
12 | | | 17 |
|