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