o need a few utils

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@463890 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-14 03:27:59 +00:00
parent 125fdc90e0
commit 9fa7f47e98
1 changed files with 4 additions and 3 deletions

View File

@ -89,9 +89,10 @@ EOF
open( T, "> $testFile") or die;
print $filename . "\n";
print T "package org.apache.maven.it;\n";
print T "import java.io.File;\n";
print T "import junit.framework.*;\n";
print T "package org.apache.maven.it;\n\n";
print T "import java.io.*;\n";
print T "import java.util.*;\n";
print T "import junit.framework.*;\n\n";
print T "public class $itTestName extends TestCase /*extends AbstractMavenIntegrationTest*/ {\n";
print T "/** $comment{$filename} */\n";
print T "public void test$filename() throws Exception {\n";