Parameter.java

1
package com.github.dakusui.pcond.core.refl;
2
3
public interface Parameter {
4
  Parameter INSTANCE = create();
5
6
  static Parameter create() {
7 1 1. create : replaced return value with null for com/github/dakusui/pcond/core/refl/Parameter::create → KILLED
    return new Parameter() {
8
      @Override
9
      public String toString() {
10
        return "";
11
      }
12
    };
13
  }
14
}

Mutations

7

1.1
Location : create
Killed by : com.github.dakusui.pcond.CallTest.cannotCallPrimitiveParameterMethodWithNull(com.github.dakusui.pcond.CallTest)
replaced return value with null for com/github/dakusui/pcond/core/refl/Parameter::create → KILLED

Active mutators

Tests examined


Report generated by PIT 1.7.3