o clean up the package names in the ITs they don't coexist well together

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@466612 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-22 01:55:53 +00:00
parent c5c6b07e3b
commit c694253925
61 changed files with 18 additions and 64 deletions

View File

@ -2,7 +2,7 @@ package org.apache.maven.it0000;
import junit.framework.TestCase;
public class IT0000PersonTest
public class PersonTest
extends TestCase
{
public void testPerson()

View File

@ -1,13 +0,0 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core-it-support-parent</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core-it-support</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>

View File

@ -21,9 +21,9 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-core-it-plugin</artifactId>
<version>1.0</version>
<groupId>org.apache.maven.it.plugins</groupId>
<artifactId>maven-it-plugin-touch</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<goals>

View File

@ -1,16 +1,16 @@
package org.apache.maven.it0000;
package it0039.project2.src.test.java.org.apache.maven.it0039;
import junit.framework.TestCase;
public class PersonTest
public class Person2Test
extends TestCase
{
public void testPerson()
{
Person person = new Person();
person.setName( "foo" );
assertEquals( "foo", person.getName() );
}
}

View File

@ -3,7 +3,7 @@ package org.apache.maven.it0047;
import org.codehaus.plexus.PlexusTestCase;
public class Person
extends PlexusTestCase
extends PlexusTestCase
{
private String name;

View File

@ -1,16 +0,0 @@
package org.apache.maven.it0001;
import junit.framework.TestCase;
public class PersonTest
extends TestCase
{
public void testPerson()
{
Person person = new Person();
person.setName( "foo" );
assertEquals( "foo", person.getName() );
}
}

View File

@ -1,16 +0,0 @@
package org.apache.maven.it0001;
public class Person
{
private String name;
public void setName( String name )
{
this.name = name;
}
public String getName()
{
return name;
}
}