public SpecialMethodMutator(Type processorType)
 {
     _mutator =
         new CompositeMutator(new IMethodMutator[]
     {
         new RevisitedMutator(processorType),
         new NullProcessorMutator(processorType)
     });
 }
示例#2
0
 public CallProcessMutator(Type processorType, IMethodMapper mapper)
 {
     _mutator = new CompositeMutator(new IMethodMutator[]
     {
         new MethodCallMutator(processorType, mapper, false),
         new PolymorphismMutator(),
         new RevisitedMutator(processorType),
         new NullProcessorMutator(processorType)
     });
 }