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