Strategy.java

1
2
package com.jsql.model.injection.engine.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 String dns = StringUtils.EMPTY;
14
    private Binary binary = new Binary();
15
    private Error error = new Error();
16
17
    public Configuration getConfiguration() {
18 1 1. getConfiguration : replaced return value with null for com/jsql/model/injection/engine/model/yaml/Strategy::getConfiguration → NO_COVERAGE
        return this.configuration;
19
    }
20
21
    public void setConfiguration(Configuration configuration) {
22
        this.configuration = configuration;
23
    }
24
25
    public Union getUnion() {
26 1 1. getUnion : replaced return value with null for com/jsql/model/injection/engine/model/yaml/Strategy::getUnion → NO_COVERAGE
        return this.union;
27
    }
28
29
    public void setUnion(Union union) {
30
        this.union = union;
31
    }
32
33
    public Binary getBinary() {
34 1 1. getBinary : replaced return value with null for com/jsql/model/injection/engine/model/yaml/Strategy::getBinary → NO_COVERAGE
        return this.binary;
35
    }
36
37
    public void setBinary(Binary binary) {
38
        this.binary = binary;
39
    }
40
41
    public Error getError() {
42 1 1. getError : replaced return value with null for com/jsql/model/injection/engine/model/yaml/Strategy::getError → NO_COVERAGE
        return this.error;
43
    }
44
45
    public void setError(Error error) {
46
        this.error = error;
47
    }
48
49
    public String getStack() {
50 1 1. getStack : replaced return value with "" for com/jsql/model/injection/engine/model/yaml/Strategy::getStack → NO_COVERAGE
        return this.stack;
51
    }
52
53
    public void setStack(String stack) {
54
        this.stack = stack;
55
    }
56
57
    public String getDns() {
58 1 1. getDns : replaced return value with "" for com/jsql/model/injection/engine/model/yaml/Strategy::getDns → NO_COVERAGE
        return this.dns;
59
    }
60
61
    public void setDns(String dns) {
62
        this.dns = dns;
63
    }
64
}

Mutations

18

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

26

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

34

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

42

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

50

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

58

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

Active mutators

Tests examined


Report generated by PIT 1.22.1