Hi. The following line in the pom.xml of generated projects only executes unit tests place directly in the src/test/java/{package.name}/unit directory:
<include>**/unit/*Test*.java</include>
The fix is to change the line to:
<include>**/unit/**/*Test*.java</include>
The change is adding the extra **/
Hi. The following line in the pom.xml of generated projects only executes unit tests place directly in the
src/test/java/{package.name}/unitdirectory:The fix is to change the line to:
The change is adding the extra
**/