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 Union union = new Union();
12
    private String stack = StringUtils.EMPTY;
13
    private Binary binary = new Binary();
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 Union getUnion() {
25 1 1. getUnion : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getUnion → NO_COVERAGE
        return this.union;
26
    }
27
28
    public void setUnion(Union union) {
29
        this.union = union;
30
    }
31
32
    public Binary getBinary() {
33 1 1. getBinary : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getBinary → NO_COVERAGE
        return this.binary;
34
    }
35
36
    public void setBinary(Binary binary) {
37
        this.binary = binary;
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 getStack() {
49 1 1. getStack : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Strategy::getStack → NO_COVERAGE
        return this.stack;
50
    }
51
52
    public void setStack(String stack) {
53
        this.stack = stack;
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 : getUnion
Killed by : none
replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getUnion → NO_COVERAGE

33

1.1
Location : getBinary
Killed by : none
replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Strategy::getBinary → 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 : getStack
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Strategy::getStack → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.19.1