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