1 | void testTrimString() {↵ | | 1 | void testNoop() {↵
|
2 | executeTarget("testTrimString");↵ | | 2 | executeTarget("noop");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testTrimStringCondition() {↵ | | 4 | public void testCurrent() {↵
|
5 | executeTarget("testTrimStringCondition");↵ | | 5 | executeTarget("current");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testNoTrimString() {↵ | | 7 | public void testFaster() {↵
|
8 | executeTarget("testNoTrimString");↵ | | 8 | executeTarget("faster");↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public void testNoTrimStringCondition() {↵ | | 10 | public void testSlower() {↵
|
11 | executeTarget("testNoTrimStringCondition");↵ | | 11 | executeTarget("slower");↵
|
12 | }↵ | | 12 | }↵
|
|
13 | public void testStringFile() {↵ | | 13 | public void testTooSlow() {↵
|
14 | expectBuildExceptionContaining("testStringFile",↵ | | 14 | expectBuildExceptionContaining(↵
|
15 | "should fail", "incompatible↵ | | |
|
16 | ");↵ | | 15 | "too_slow","out of range","out of the range 1-10");↵
|
17 | } | | 16 | }
|