blob: 80014fa03bc24dc52885a495e1f2717446b6ec48 [file] [log] [blame]
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() );
}
}