Initial revision

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163474 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-03-07 23:45:59 +00:00
parent 1d615cd239
commit 73f4808ea7
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package org.apache.maven.it0010;
import junit.framework.TestCase;
public class PersonFinderTest
extends TestCase
{
public void testFindPerson()
throws Exception
{
// should be no exceptions
new PersonFinder().findPerson();
}
}