| | | 1 | void testHMS() throws Exception {↵
|
| | | 2 | params.add(new CompoundVariable("HMS"));↵
|
| | | 3 | variable.setParameters(params);↵
|
| | | 4 | value = variable.execute(result, null);↵
|
| | | 5 | assertEquals(6,value.length());↵
|
| | | 6 | }↵
|
|
1 | void testYMDHMS() throws Exception {↵ | | 7 | public void testYMDHMS() throws Exception {↵
|
2 | params.add(new CompoundVariable("YMDHMS"));↵ | | 8 | params.add(new CompoundVariable("YMDHMS"));↵
|
3 | variable.setParameters(params);↵ | | 9 | variable.setParameters(params);↵
|
4 | value = variable.execute(result, null);↵ | | 10 | value = variable.execute(result, null);↵
|
5 | assertEquals(15,value.length());↵ | | 11 | assertEquals(15,value.length());↵
|
6 | }↵ | | 12 | }↵
|
|
7 | public void testUSER1() throws Exception {↵ | | 13 | public void testUSER1() throws Exception {↵
|
8 | params.add(new CompoundVariable("USER1"));↵ | | 14 | params.add(new CompoundVariable("USER1"));↵
|
9 | variable.setParameters(params);↵ | | 15 | variable.setParameters(params);↵
|
10 | value = variable.execute(result, null);↵ | | 16 | value = variable.execute(result, null);↵
|
11 | assertEquals(0,value.length());↵ | | 17 | assertEquals(0,value.length());↵
|
12 | }↵ | | 18 |
|
|
13 | public void testUSER2() throws Exception {↵ | | | |
14 | params.add(new CompoundVariable("USER2"));↵ | | | |
15 | variable.setParameters(params);↵ | | | |
16 | value = variable.execute(result, null);↵ | | | |
17 | assertEquals(0,value.length());↵ | | | |
18 | | | | |