Boolean.java

1
2
package com.jsql.model.injection.vendor.model.yaml;
3
4
import org.apache.commons.lang3.StringUtils;
5
6
import java.io.Serializable;
7
8
public class Boolean implements Serializable {
9
10
    private Test test = new Test();
11
    private String blind = StringUtils.EMPTY;
12
    private String time = StringUtils.EMPTY;
13
    private String multibit = StringUtils.EMPTY;
14
    private String modeAnd = "and";
15
    private String modeOr = "or";
16
    private String modeStacked = ";";
17
18
    public Test getTest() {
19 1 1. getTest : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Boolean::getTest → NO_COVERAGE
        return this.test;
20
    }
21
22
    public void setTest(Test test) {
23
        this.test = test;
24
    }
25
26
    public String getBlind() {
27 1 1. getBlind : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getBlind → NO_COVERAGE
        return this.blind;
28
    }
29
30
    public void setBlind(String blind) {
31
        this.blind = blind;
32
    }
33
34
    public String getTime() {
35 1 1. getTime : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getTime → NO_COVERAGE
        return this.time;
36
    }
37
38
    public void setTime(String time) {
39
        this.time = time;
40
    }
41
42
    public String getModeAnd() {
43 1 1. getModeAnd : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getModeAnd → NO_COVERAGE
        return this.modeAnd;
44
    }
45
46
    public void setModeAnd(String modeAnd) {
47
        this.modeAnd = modeAnd;
48
    }
49
50
    public String getModeOr() {
51 1 1. getModeOr : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getModeOr → NO_COVERAGE
        return this.modeOr;
52
    }
53
54
    public void setModeOr(String modeOr) {
55
        this.modeOr = modeOr;
56
    }
57
58
    public String getModeStacked() {
59 1 1. getModeStacked : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getModeStacked → NO_COVERAGE
        return this.modeStacked;
60
    }
61
62
    public void setModeStacked(String modeStacked) {
63
        this.modeStacked = modeStacked;
64
    }
65
66
    public String getMultibit() {
67 1 1. getMultibit : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getMultibit → NO_COVERAGE
        return multibit;
68
    }
69
70
    public void setMultibit(String multibit) {
71
        this.multibit = multibit;
72
    }
73
}

Mutations

19

1.1
Location : getTest
Killed by : none
replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Boolean::getTest → NO_COVERAGE

27

1.1
Location : getBlind
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getBlind → NO_COVERAGE

35

1.1
Location : getTime
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getTime → NO_COVERAGE

43

1.1
Location : getModeAnd
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getModeAnd → NO_COVERAGE

51

1.1
Location : getModeOr
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getModeOr → NO_COVERAGE

59

1.1
Location : getModeStacked
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getModeStacked → NO_COVERAGE

67

1.1
Location : getMultibit
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Boolean::getMultibit → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.16.1