summaryrefslogtreecommitdiffstats
path: root/test/src/net/sf/antcontrib/logic/AssertTest.java
diff options
context:
space:
mode:
authormattinger <[email protected]>2006-07-06 21:53:00 +0000
committermattinger <[email protected]>2006-07-06 21:53:00 +0000
commit1159111b7a71b72eb04326df33211e1733f7e742 (patch)
treef0a80c384f633e521649654ab78e6239cf5e0d6f /test/src/net/sf/antcontrib/logic/AssertTest.java
Initial addition into subversion with build script changes
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@5 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'test/src/net/sf/antcontrib/logic/AssertTest.java')
-rw-r--r--test/src/net/sf/antcontrib/logic/AssertTest.java84
1 files changed, 84 insertions, 0 deletions
diff --git a/test/src/net/sf/antcontrib/logic/AssertTest.java b/test/src/net/sf/antcontrib/logic/AssertTest.java
new file mode 100644
index 0000000..449068f
--- /dev/null
+++ b/test/src/net/sf/antcontrib/logic/AssertTest.java
@@ -0,0 +1,84 @@
+/*
+ * Copyright (c) 2001-2004 Ant-Contrib project. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package net.sf.antcontrib.logic;
+
+import net.sf.antcontrib.BuildFileTestBase;
+
+/**
+ * Since AntCallBack is basically a copy and paste of antcall, the only testing
+ * done here is on the extra features provided by antcallback. It is assumed
+ * that changes to antcall will be propagated to antcallback and that antcall
+ * has it's own unit tests (which turns out to have been a bad assumption,
+ * I can't find any unit tests for antcall).
+ *
+ * @author danson
+ */
+public class AssertTest extends BuildFileTestBase {
+
+ /**
+ * Constructor for the AntCallBackTest object
+ *
+ * @param name Description of the Parameter
+ */
+ public AssertTest( String name ) {
+ super( name );
+ }
+
+
+ /** The JUnit setup method */
+ public void setUp() {
+ configureProject( "test/resources/logic/asserttest.xml" );
+ }
+
+
+ /** A unit test for JUnit */
+ public void test1() {
+ executeTarget( "test1" );
+ }
+
+ public void test2() {
+ expectBuildExceptionStackTraceContaining( "test2", "testing assert failure", "Property 'testprop' doesn't exist in this project." );
+ }
+
+ public void test3() {
+ expectBuildExceptionStackTraceContaining( "test3", "testing assert failure", "Expected 'false', but was 'true'." );
+ }
+
+ public void test4() {
+ executeTarget("test4");
+ }
+
+ public void test5() {
+ executeTarget("test5");
+ }
+
+ public void test6() {
+ executeTarget("test6");
+ }
+
+ public void test7(){
+ expectBuildExceptionStackTraceContaining( "test7", "testing conditions", "Assertion failed boolean test." );
+ }
+
+ public void test8() {
+ executeTarget("test8");
+ }
+
+ public void test9() {
+ expectBuildExceptionStackTraceContaining( "test9", "testing conditions", "Assertion failed boolean test." );
+ }
+}
+