1 | void testUriroot() throws Exception {↵ | | 1 | void testNested() {↵
|
2 | executeJspCompile("testUriroot", "uriroot_jsp.java");↵ | | 2 | expectLog("nest↵
|
3 | }↵ | | |
|
|
|
4 | /**↵ | | |
|
5 | * A unit test for JUnit↵ | | 3 | ed", "A nested element");↵
|
6 | */↵ | | 4 | }↵
|
|
7 | public void testXml() throws Exception {↵ | | 5 | public void testDouble() {↵
|
8 | executeJspCompile("testXml", "xml_jsp.java");↵ | | 6 | expec↵
|
9 | }↵ | | |
|
|
|
10 | /**↵ | | |
|
11 | * try a keyword in a file↵ | | 7 | tLog(↵
|
| | | 8 | "double",↵
|
| | | 9 | "@{prop} is 'property', value of ${property} is 'A property value'");↵
|
12 | */↵ | | 10 | }↵
|
|
13 | public void testKeyword() throws Exception {↵ | | 11 | public void testIgnoreCase() {↵
|
14 | executeJspCompile("testKeyword", "default_jsp.java");↵ | | 12 | expec↵
|
15 | }↵ | | |
|
|
|
16 | /**↵ | | |
|
17 | * what happens to 1nvalid-classname↵ | | |
|
18 | ↵ | | 13 | tLog(↵
|
| | | 14 | "ignorecase",↵
|
| | | 15 | "a is ab is b");↵
|
19 | */↵ | | 16 | }↵
|
|
20 | public void testInvalidClassname() throws Exception {↵ | | 17 | public void testIgnoreElementCase() {↵
|
21 | executeJspCompile("testInvalidClassname",↵ | | 18 | expec↵
|
22 | "_1nvalid_0002dclassname_jsp.java↵ | | 19 | tLog(↵
|
| | | 20 | "ignore-element-case",↵
|
23 | ");↵ | | 21 | "nested elementnested element");↵
|
24 | | | 22 |
|