Skip to content

MTNonMutatedMethodsAnalysis

DurieuxPol edited this page Jan 29, 2024 · 3 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.

How to use

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 findMethodsWithoutMutation inspect