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