According to Pitest's documentation, it seems that this should be simple, but it is giving me some trouble. I should be able to have
java -cp <your classpath> \
org.pitest.mutationtest.commandline.MutationCoverageReport \
--reportDir c:\\mutationReports \
--targetClasses example.foo.* \
--sourceDirs c:\\myProject\\src \
--targetTests example.foo*
but I don't know what some of those things should be for my project, such as "<your classpath>".
My project's file structure looks like this:
Ultimately I want to put this in a .bat file and run it on TeamCity for my CI
Any help would be appreciated!
classpath
you should have all your classes and all dependencies of your project (including PIT). Eclipse should provide classpath string for you when for example you are running tests. – Unstressed