TempTable.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 TempTable implements Serializable {
8
9
    private String drop = StringUtils.EMPTY;
10
    private String add = StringUtils.EMPTY;
11
    private String fill = StringUtils.EMPTY;
12
13
    public String getDrop() {
14 1 1. getDrop : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/TempTable::getDrop → NO_COVERAGE
        return this.drop;
15
    }
16
17
    public void setDrop(String drop) {
18
        this.drop = drop;
19
    }
20
21
    public String getAdd() {
22 1 1. getAdd : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/TempTable::getAdd → NO_COVERAGE
        return this.add;
23
    }
24
25
    public void setAdd(String add) {
26
        this.add = add;
27
    }
28
29
    public String getFill() {
30 1 1. getFill : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/TempTable::getFill → NO_COVERAGE
        return this.fill;
31
    }
32
33
    public void setFill(String fill) {
34
        this.fill = fill;
35
    }
36
}

Mutations

14

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

22

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

30

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

Active mutators

Tests examined


Report generated by PIT 1.19.1