|
|
|
|
|
by misja111
860 days ago
|
|
I have tried those out for a large Java project. The problem is that it is just too slow to use with a large unit test suite.
What mutation testing does, is running all the tests in your suite multiple times while changing some of your code base ("mutation points") to see if it affects the test outcome (it should).
So say that your test suite normally takes 10 minutes, then a full mutation suite can easily be a factor 50 slower, which means 8 hours. |
|