1 | void testAttributeDescription() {↵ | | 1 | void testXml() throws Exception {↵
|
2 | expectLog(↵ | | 2 | exec↵
|
3 | "attribute.description",↵ | | |
|
4 | "description is hello world");↵ | | 3 | uteJspCompile("testXml", "xml_jsp.java");↵
|
| | | 4 | }↵
|
|
|
| | | 5 | /**↵
|
| | | 6 | * try a keyword in a file↵
|
5 | }↵ | | 7 | */↵
|
6 | public void testOverrideDefault() {↵ | | 8 | public void testKeyword() throws Exception {↵
|
7 | expectLog(↵ | | 9 | exec↵
|
8 | "override.default",↵ | | |
|
9 | "value is new");↵ | | 10 | uteJspCompile("testKeyword", "default_jsp.java");↵
|
| | | 11 | }↵
|
|
|
| | | 12 | /**↵
|
| | | 13 | * what happens to 1nvalid-classname↵
|
10 | }↵ | | 14 | */↵
|
11 | public void testImplicit() {↵ | | 15 | public void testInvalidClassname() throws Exception {↵
|
12 | expectLog(↵ | | 16 | exec↵
|
13 | "implicit", "Before implicitIn implicitAfter implicit↵ | | 17 | uteJspCompile("testInvalidClassname",↵
|
14 | ");↵ | | 18 | "_1nvalid_0002dclassname_jsp.java");↵
|
15 | } | | 19 | }
|