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