Strategy.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 Strategy implements Serializable {
9
10
    private Configuration configuration = new Configuration();
11
    private Normal normal = new Normal();
12
    private String stacked = StringUtils.EMPTY;
13
    private Boolean booleanStrategy = new Boolean();
14
    private Error error = new Error();
15
16
    public Configuration getConfiguration() {
17 1 1. getConfiguration : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getConfiguration → NO_COVERAGE
        return this.configuration;
18
    }
19
20
    public void setConfiguration(Configuration configuration) {
21
        this.configuration = configuration;
22
    }
23
24
    public Normal getNormal() {
25 1 1. getNormal : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getNormal → NO_COVERAGE
        return this.normal;
26
    }
27
28
    public void setNormal(Normal normal) {
29
        this.normal = normal;
30
    }
31
32
    public Boolean getBoolean() {
33 1 1. getBoolean : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getBoolean → NO_COVERAGE
        return this.booleanStrategy;
34
    }
35
36
    public void setBoolean(Boolean booleanStrategy) {
37
        this.booleanStrategy = booleanStrategy;
38
    }
39
40
    public Error getError() {
41 1 1. getError : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getError → NO_COVERAGE
        return this.error;
42
    }
43
44
    public void setError(Error error) {
45
        this.error = error;
46
    }
47
48
    public String getStacked() {
49 1 1. getStacked : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Strategy::getStacked → NO_COVERAGE
        return stacked;
50
    }
51
52
    public void setStacked(String stacked) {
53
        this.stacked = stacked;
54
    }
55
}

Mutations

17

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

25

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

33

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

41

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

49

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

Active mutators

Tests examined


Report generated by PIT 1.16.1