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