What is Mutation Testing ?
Introduction Mutation testing is seeding faults into your code and seeing if tests pass or fail. Faults or mutations are automatically seeded into your code, then your tests are run. If your tests fail then the mutation is killed, if your tests pass then the mutation lived. Generally, in mutation testing, unit tests are run […]