-
Notifications
You must be signed in to change notification settings - Fork 14
MTNonMutatedMethodsAnalysis
DurieuxPol edited this page Oct 18, 2024
·
4 revisions
The MTNonMutatedMethodsAnalysis aims to find the methods that MuTalk couldn't mutate. That is to say the methods on which none of the mutant operators could generate a mutation.
You can use the MTNonMutatedMethodsAnalysis in two ways:
- on classes:
-
analysis := MTNonMutatedMethodsAnalysis forClasses: { UUID }
-
- on packages:
-
analysis := MTNonMutatedMethodsAnalysis forPackages: { 'Network-UUID' }
-
Then to get the non mutated methods you simply use:
-
analysis methodsWithoutMutation inspect