01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: *
17: */
18:
19: package org.apache.tools.ant;
20:
21: // This test will fail with embed, or if top-level is moved out of
22: // dependency - as 'echo' happens as part of configureProject stage.
23:
24: /**
25: * Tests for builds with tasks at the top level
26: *
27: * @since Ant 1.6
28: */
29: public class TopLevelTaskTest extends BuildFileTest {
30:
31: public TopLevelTaskTest(String name) {
32: super (name);
33: }
34:
35: public void testNoTarget() {
36: configureProject("src/etc/testcases/core/topleveltasks/notarget.xml");
37: expectLog("", "Called");
38: }
39:
40: public void testCalledFromTopLevelAnt() {
41: configureProject("src/etc/testcases/core/topleveltasks/toplevelant.xml");
42: expectLog("", "Called");
43: }
44:
45: public void testCalledFromTargetLevelAnt() {
46: configureProject("src/etc/testcases/core/topleveltasks/targetlevelant.xml");
47: expectLog("foo", "Called");
48: }
49: }
|