Hi guys!
My java project is structured like this:
- Module A:
------- some file
-------
pom.xml
- Module B:
-------
some file
-------
pom.xml
------- test\testFile
pom.xml(entire project) i used this file to configure pitest
I have a single test file that runs tests on the entire application, what I want to know is whether it is possible for module (a) to see the tests written in module (b)
Because so far I have a pretty good report on B while on A everything is red precisely because there are no tests executed!
Thanks in advance! :)
Mark