1 | void testSimple() throws Exception {↵ | | 1 | void testTextOptional() {↵
|
2 | executeJspCompile("testSimple", "simple_jsp.java");↵ | | 2 | expec↵
|
3 | }↵ | | |
|
|
|
4 | /**↵ | | |
|
5 | * A unit test for JUnit↵ | | 3 | tLog("text.optional", "MyTextoverride text");↵
|
6 | */↵ | | 4 | }↵
|
|
7 | public void testUriroot() throws Exception {↵ | | 5 | public void testElementOrder() {↵
|
8 | executeJspCompile("testUriroot", "uriroot_jsp.java");↵ | | 6 | expec↵
|
9 | }↵ | | |
|
|
|
10 | /**↵ | | |
|
11 | * A unit test for JUnit↵ | | |
|
12 | */↵ | | |
|
13 | public void testXml() throws Exception↵ | | 7 | tLog("element.order", "Line 1Line 2");↵
|
| | | 8 | }↵
|
|
14 | {↵ | | 9 | public void testElementOrder2() {↵
|
15 | executeJspCompile("testXml", "xml_jsp.java");↵ | | 10 | expec↵
|
16 | }↵ | | |
|
|
|
17 | /**↵ | | |
|
18 | * try a keyword in a file↵ | | |
|
19 | ↵ | | 11 | tLog("element.order2", "Line 1Line 2Line 3");↵
|
20 | */↵ | | 12 | }↵
|
|
21 | public void testKeyword() throws Exception {↵ | | 13 | public void testAntTypeTest() {↵
|
22 | executeJspCompile("testKeyword", "default_jsp.java");↵ | | 14 | expectLog("antTypeTest", "");↵
|
23 | | | 15 |
|