It may get confusing to have each example follow the same naming convention. Here is the current convention:
Snippet.java (code snippet to be mutated)
TestSuite.java (suite to run our tests)
Tests.java (tests that should pass mutation testing)
Would it be better to keep it simple and always do this, or support different class names like HelloWorld.java and HelloWorldTests.java?
The script would need to be updated to support more classnames, which could add unnecessary complexity. Ideally, if it isn't simple, it doesn't belong in this repo.
It may get confusing to have each example follow the same naming convention. Here is the current convention:
Snippet.java (code snippet to be mutated)
TestSuite.java (suite to run our tests)
Tests.java (tests that should pass mutation testing)
Would it be better to keep it simple and always do this, or support different class names like HelloWorld.java and HelloWorldTests.java?
The script would need to be updated to support more classnames, which could add unnecessary complexity. Ideally, if it isn't simple, it doesn't belong in this repo.