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