I was trying out the tool on MacOS and I found out that it was crashing due to the some splits on file paths where the file separator was hard-coded for Windows.
I replaced those occurrences with File.separator and it now words for Unix systems.
I also wrote the TestFileTest suite to check the behavior on both Unix and Windows systems.
I did not try to execute the Windows tests tough.
I have a question about the getTagName() method of the TestFile class.
What is that supposed to do? Inspecting the Main it seems it should get the version of the project, but its implementation seems obscure to me.
I also modified the pom file to package everything from Maven.
Thank you very much
@victorgveloso you are right, I included by mistake df53159 that only computed assertion roulette and eager test (that I needed for other purposes). Now it calculates everything
I was trying out the tool on MacOS and I found out that it was crashing due to the some splits on file paths where the file separator was hard-coded for Windows. I replaced those occurrences with
File.separator
and it now words for Unix systems. I also wrote theTestFileTest
suite to check the behavior on both Unix and Windows systems. I did not try to execute the Windows tests tough.I have a question about the
getTagName()
method of theTestFile
class. What is that supposed to do? Inspecting theMain
it seems it should get the version of the project, but its implementation seems obscure to me.I also modified the
pom
file to package everything from Maven. Thank you very much