Mutation Testing is a type of software testing where we mutate (change) certain statements in the source code and check if the test cases are able to find the errors. It is a type of White Box Testing which is mainly used for Unit Testing.Automation tools of Mutation Testing:StrykerPIT Testing
Mutation testing, also known as code mutation testing, is a form of white box testing in which testers change specific components of an application's source code to ensure a software test suite can detect the changes
Wrong reply. please ignore my earlier comment. There is no delete option that i can delete it .
.Net has 3 Generations of garbage collection.Generation 0:- garbage collector runs most often on this generation of defined memory heap. During garbage collection, If any object has no reference, then it clears that memory or else pushes that memory to Generation 1 category.Generation 1:- Here garbage collector visits those heap memory comparatively less frequent with respect to Generation 0.Generation 2:- Frequency of garbage collection is very less as those memory heaps keeps an active object reference. For example static class, variables memory reference falls under this generation.