Confirm.java

1
package com.jsql.model.accessible.vendor.postgres;
2
3
import org.apache.commons.lang3.StringUtils;
4
5
import java.io.Serializable;
6
7
public class Confirm implements Serializable {
8
9
    private String addFunc = StringUtils.EMPTY;
10
    private String funcExists = StringUtils.EMPTY;
11
12
    public String getAddFunc() {
13 1 1. getAddFunc : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Confirm::getAddFunc → NO_COVERAGE
        return this.addFunc;
14
    }
15
16
    public void setAddFunc(String addFunc) {
17
        this.addFunc = addFunc;
18
    }
19
20
    public String getFuncExists() {
21 1 1. getFuncExists : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Confirm::getFuncExists → NO_COVERAGE
        return this.funcExists;
22
    }
23
24
    public void setFuncExists(String funcExists) {
25
        this.funcExists = funcExists;
26
    }
27
}

Mutations

13

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

21

1.1
Location : getFuncExists
Killed by : none
replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Confirm::getFuncExists → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.19.1