TempTable.java

1
package com.jsql.model.accessible.vendor.mysql;
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 nameDatabase = StringUtils.EMPTY;
10
    private String drop = StringUtils.EMPTY;
11
    private String confirm = StringUtils.EMPTY;
12
    private String create = StringUtils.EMPTY;
13
    private String insertChunks = StringUtils.EMPTY;
14
    private String appendChunks = StringUtils.EMPTY;
15
    private String dump = StringUtils.EMPTY;
16
17
    public String getNameDatabase() {
18 1 1. getNameDatabase : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/TempTable::getNameDatabase → NO_COVERAGE
        return this.nameDatabase;
19
    }
20
21
    public void setNameDatabase(String nameDatabase) {
22
        this.nameDatabase = nameDatabase;
23
    }
24
25
    public String getDrop() {
26 1 1. getDrop : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/TempTable::getDrop → NO_COVERAGE
        return this.drop;
27
    }
28
29
    public void setDrop(String drop) {
30
        this.drop = drop;
31
    }
32
33
    public String getConfirm() {
34 1 1. getConfirm : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/TempTable::getConfirm → NO_COVERAGE
        return this.confirm;
35
    }
36
37
    public void setConfirm(String confirm) {
38
        this.confirm = confirm;
39
    }
40
41
    public String getCreate() {
42 1 1. getCreate : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/TempTable::getCreate → NO_COVERAGE
        return this.create;
43
    }
44
45
    public void setCreate(String create) {
46
        this.create = create;
47
    }
48
49
    public String getInsertChunks() {
50 1 1. getInsertChunks : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/TempTable::getInsertChunks → NO_COVERAGE
        return this.insertChunks;
51
    }
52
53
    public void setInsertChunks(String insertChunks) {
54
        this.insertChunks = insertChunks;
55
    }
56
57
    public String getAppendChunks() {
58 1 1. getAppendChunks : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/TempTable::getAppendChunks → NO_COVERAGE
        return this.appendChunks;
59
    }
60
61
    public void setAppendChunks(String appendChunks) {
62
        this.appendChunks = appendChunks;
63
    }
64
65
    public String getDump() {
66 1 1. getDump : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/TempTable::getDump → NO_COVERAGE
        return this.dump;
67
    }
68
69
    public void setDump(String dump) {
70
        this.dump = dump;
71
    }
72
}

Mutations

18

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

26

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

34

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

42

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

50

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

58

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

66

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

Active mutators

Tests examined


Report generated by PIT 1.19.1