소스 검색

SEC-1881: Configure surefire to include **/*Test.class to avoid accidentally not running new tests that end in Test

Rob Winch 13 년 전
부모
커밋
25e17c1568
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      pom.xml

+ 1 - 0
pom.xml

@@ -315,6 +315,7 @@
                 <configuration>
                     <includes>
                         <include>**/*Tests.class</include>
+                        <include>**/*Test.class</include>
                     </includes>
                     <excludes>
                         <exclude>**/Abstract*</exclude>