diff --git a/maven-core-it/it0010/src/test/java/org/apache/maven/it0010/PersonFinderTest.java b/maven-core-it/it0010/src/test/java/org/apache/maven/it0010/PersonFinderTest.java new file mode 100644 index 0000000000..ce2ff39dbd --- /dev/null +++ b/maven-core-it/it0010/src/test/java/org/apache/maven/it0010/PersonFinderTest.java @@ -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(); + } +}