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