1 | void testSimple() {↵ | | 1 | void testNoop() {↵
|
2 | executeTarget("simple");↵ | | 2 | executeTarget("noop");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testName() {↵ | | 4 | public void testCurrent() {↵
|
5 | executeTarget("name");↵ | | 5 | executeTarget("current");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testBaseDir() {↵ | | 7 | public void testFaster() {↵
|
8 | executeTarget("basedir");↵ | | 8 | executeTarget("faster");↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public void testType() {↵ | | 10 | public void testSlower() {↵
|
11 | executeTarget("type");↵ | | 11 | executeTarget("slower");↵
|
12 | }↵ | | 12 | }↵
|
|
13 | public void testNotSelector() {↵ | | 13 | public void testTooSlow() {↵
|
14 | expectBuildExceptionContaining(↵ | | 14 | expectBuildExceptionContaining(↵
|
15 | "not.selector", "checking for use as a selector (not allowed)",↵ | | 15 | ↵
|
16 | "fileset doesn't support the nested \"isfile");↵ | | 16 | "too_slow","out of range","out of the range 1-10");↵
|
17 | } | | 17 | }
|