You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@depot.apache.org by ni...@apache.org on 2004/08/03 23:35:16 UTC

svn commit: rev 35653 - incubator/depot/trunk/version/src/test/java/org/apache/depot/version/ant/stamp

Author: nickchalko
Date: Tue Aug  3 16:35:15 2004
New Revision: 35653

Modified:
   incubator/depot/trunk/version/src/test/java/org/apache/depot/version/ant/stamp/VersionGeneratorTaskTest.java
Log:
Format

Modified: incubator/depot/trunk/version/src/test/java/org/apache/depot/version/ant/stamp/VersionGeneratorTaskTest.java
==============================================================================
--- incubator/depot/trunk/version/src/test/java/org/apache/depot/version/ant/stamp/VersionGeneratorTaskTest.java	(original)
+++ incubator/depot/trunk/version/src/test/java/org/apache/depot/version/ant/stamp/VersionGeneratorTaskTest.java	Tue Aug  3 16:35:15 2004
@@ -1,71 +1,61 @@
 /*
  * Copyright 2004 The Apache Software Foundation
  * 
- * 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
+ * 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.
+ * 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 org.apache.depot.version.ant.stamp;
 
-
-import org.apache.depot.version.VersionManager;
-import org.apache.depot.version.VersionMarker;
 import org.apache.tools.ant.BuildFileTest;
 import org.apache.tools.ant.Project;
 
 public class VersionGeneratorTaskTest extends BuildFileTest {
 
-	/**
-	 * Constructor for VersionTask.
-	 * 
-	 * @param arg0
-	 */
-	public VersionGeneratorTaskTest(String arg0) {
-		super(arg0);
-	}
-
-	public void setUp() {
-		configureProject(
-				"src/test/java/org/apache/depot/version/ant/stamp/version.xml",
-				Project.MSG_INFO);
-	}
-
-	public void testComplex() {
-		executeTarget("testComplex");
-	}
-
-	public void testComplexAttributed() {
-		executeTarget("testComplexAttributed");
-	}
-
-	public void testVersionString() {
-		executeTarget("testVersionString");
-	}
-
-
-	public void testVersionString2() {
-		executeTarget("testVersionString2");
-	}
-
-	public void testVersionString3() {
-		executeTarget("testVersionString3");
-	}
-
-	public void testDefaultedAttributes() {
-		executeTarget("testDefaultedAttributes");
-	}
-	public void testDevVersion() {
-		executeTarget("testDevVersion");
-	}
-
+    /**
+     * Constructor for VersionTask.
+     * 
+     * @param arg0
+     */
+    public VersionGeneratorTaskTest(String arg0) {
+        super(arg0);
+    }
+
+    public void setUp() {
+        configureProject("src/test/java/org/apache/depot/version/ant/stamp/version.xml", Project.MSG_INFO);
+    }
+
+    public void testComplex() {
+        executeTarget("testComplex");
+    }
+
+    public void testComplexAttributed() {
+        executeTarget("testComplexAttributed");
+    }
+
+    public void testVersionString() {
+        executeTarget("testVersionString");
+    }
+
+    public void testVersionString2() {
+        executeTarget("testVersionString2");
+    }
+
+    public void testVersionString3() {
+        executeTarget("testVersionString3");
+    }
+
+    public void testDefaultedAttributes() {
+        executeTarget("testDefaultedAttributes");
+    }
+    public void testDevVersion() {
+        executeTarget("testDevVersion");
+    }
 
 }