git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@466603 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-21 23:01:09 +00:00
parent db0f39f45f
commit 6d32bb1a1a
2 changed files with 0 additions and 32 deletions

View File

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