blob: cd285797510334c1b76c51cd8736b296cd978c96 [file] [log] [blame]
package org.apache.maven.it0039;
import junit.framework.TestCase;
public class PersonTest
extends TestCase
{
public void testPerson()
{
Person person = new Person();
person.setName( "foo" );
assertEquals( "foo", person.getName() );
}
}