ModelReverse.java

1
package com.jsql.util.reverse;
2
3
public class ModelReverse {
4
    String name;
5
    String command;
6
7
    public ModelReverse(String name, String command) {
8
        this.name = name;
9
        this.command = command;
10
    }
11
12
    public String getName() {
13 1 1. getName : replaced return value with "" for com/jsql/util/reverse/ModelReverse::getName → NO_COVERAGE
        return this.name;
14
    }
15
16
    public void setName(String name) {
17
        this.name = name;
18
    }
19
20
    public String getCommand() {
21 1 1. getCommand : replaced return value with "" for com/jsql/util/reverse/ModelReverse::getCommand → NO_COVERAGE
        return this.command;
22
    }
23
24
    public void setCommand(String command) {
25
        this.command = command;
26
    }
27
}

Mutations

13

1.1
Location : getName
Killed by : none
replaced return value with "" for com/jsql/util/reverse/ModelReverse::getName → NO_COVERAGE

21

1.1
Location : getCommand
Killed by : none
replaced return value with "" for com/jsql/util/reverse/ModelReverse::getCommand → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.19.1