Udf.java

1
2
package com.jsql.model.accessible.vendor.oracle;
3
4
import org.apache.commons.lang3.StringUtils;
5
6
import java.io.Serializable;
7
8
public class Udf implements Serializable {
9
10
    private String dropSource = StringUtils.EMPTY;
11
    private String dropFunc = StringUtils.EMPTY;
12
    private String addSource = StringUtils.EMPTY;
13
    private String addFunc = StringUtils.EMPTY;
14
    private String grant = StringUtils.EMPTY;
15
    private String confirm = StringUtils.EMPTY;
16
    private String runCmd = StringUtils.EMPTY;
17
18
    public String getDropSource() {
19 1 1. getDropSource : replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getDropSource → NO_COVERAGE
        return this.dropSource;
20
    }
21
22
    public void setDropSource(String dropSource) {
23
        this.dropSource = dropSource;
24
    }
25
26
    public String getDropFunc() {
27 1 1. getDropFunc : replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getDropFunc → NO_COVERAGE
        return this.dropFunc;
28
    }
29
30
    public void setDropFunc(String dropFunc) {
31
        this.dropFunc = dropFunc;
32
    }
33
34
    public String getAddSource() {
35 1 1. getAddSource : replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getAddSource → NO_COVERAGE
        return this.addSource;
36
    }
37
38
    public void setAddSource(String addSource) {
39
        this.addSource = addSource;
40
    }
41
42
    public String getAddFunc() {
43 1 1. getAddFunc : replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getAddFunc → NO_COVERAGE
        return this.addFunc;
44
    }
45
46
    public void setAddFunc(String addFunc) {
47
        this.addFunc = addFunc;
48
    }
49
50
    public String getGrant() {
51 1 1. getGrant : replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getGrant → NO_COVERAGE
        return this.grant;
52
    }
53
54
    public void setGrant(String grant) {
55
        this.grant = grant;
56
    }
57
58
    public String getConfirm() {
59 1 1. getConfirm : replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getConfirm → NO_COVERAGE
        return this.confirm;
60
    }
61
62
    public void setConfirm(String confirm) {
63
        this.confirm = confirm;
64
    }
65
66
    public String getRunCmd() {
67 1 1. getRunCmd : replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getRunCmd → NO_COVERAGE
        return this.runCmd;
68
    }
69
70
    public void setRunCmd(String runCmd) {
71
        this.runCmd = runCmd;
72
    }
73
}

Mutations

19

1.1
Location : getDropSource
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getDropSource → NO_COVERAGE

27

1.1
Location : getDropFunc
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getDropFunc → NO_COVERAGE

35

1.1
Location : getAddSource
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getAddSource → NO_COVERAGE

43

1.1
Location : getAddFunc
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getAddFunc → NO_COVERAGE

51

1.1
Location : getGrant
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getGrant → NO_COVERAGE

59

1.1
Location : getConfirm
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getConfirm → NO_COVERAGE

67

1.1
Location : getRunCmd
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/oracle/Udf::getRunCmd → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.19.1