KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tools > ant > TopLevelTaskTest


1 /*
2  * Copyright 2002,2004 The Apache Software Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */

17
18 package org.apache.tools.ant;
19
20 // This test will fail with embed, or if top-level is moved out of
21
// dependency - as 'echo' happens as part of configureProject stage.
22

23 /**
24  * Tests for builds with tasks at the top level
25  *
26  * @since Ant 1.6
27  */

28 public class TopLevelTaskTest extends BuildFileTest {
29
30     public TopLevelTaskTest(String JavaDoc name) {
31         super(name);
32     }
33
34     public void testNoTarget() {
35         configureProject("src/etc/testcases/core/topleveltasks/notarget.xml");
36         expectLog("", "Called");
37     }
38
39     public void testCalledFromTopLevelAnt() {
40         configureProject("src/etc/testcases/core/topleveltasks/toplevelant.xml");
41         expectLog("", "Called");
42     }
43
44     public void testCalledFromTargetLevelAnt() {
45         configureProject("src/etc/testcases/core/topleveltasks/targetlevelant.xml");
46         expectLog("foo", "Called");
47     }
48 }
49
Popular Tags