o Removed superfluos files

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@729960 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-12-29 18:02:37 +00:00
parent 850b4c6cd2
commit f363a302da
2 changed files with 0 additions and 32 deletions

View File

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

View File

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