o adding Test*.java to the default regexes for inclusion.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@290866 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-09-22 00:28:18 +00:00
parent ef26e75576
commit 4aaabdbece
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ public class SurefirePlugin
// Have to wrap in an ArrayList as surefire expects an ArrayList instead of a List for some reason
if ( includes == null || includes.size() == 0 )
{
includes = new ArrayList( Arrays.asList( new String[] { "**/*Test.java", "**/*TestCase.java" } ) );
includes = new ArrayList( Arrays.asList( new String[] { "**/Test*.java", "**/*Test.java", "**/*TestCase.java" } ) );
}
if ( excludes == null || excludes.size() == 0 )
{