Schema.java

1
2
package com.jsql.model.injection.vendor.model.yaml;
3
4
import org.apache.commons.lang3.StringUtils;
5
6
import java.io.Serializable;
7
8
public class Schema implements Serializable {
9
10
    private String database = StringUtils.EMPTY;
11
    private String table = StringUtils.EMPTY;
12
    private String column = StringUtils.EMPTY;
13
    private Row row = new Row();
14
15
    public String getDatabase() {
16 1 1. getDatabase : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Schema::getDatabase → NO_COVERAGE
        return this.database;
17
    }
18
19
    public void setDatabase(String database) {
20
        this.database = database;
21
    }
22
23
    public String getTable() {
24 1 1. getTable : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Schema::getTable → NO_COVERAGE
        return this.table;
25
    }
26
27
    public void setTable(String table) {
28
        this.table = table;
29
    }
30
31
    public String getColumn() {
32 1 1. getColumn : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Schema::getColumn → NO_COVERAGE
        return this.column;
33
    }
34
35
    public void setColumn(String column) {
36
        this.column = column;
37
    }
38
39
    public Row getRow() {
40 1 1. getRow : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Schema::getRow → NO_COVERAGE
        return this.row;
41
    }
42
43
    public void setRow(Row row) {
44
        this.row = row;
45
    }
46
}

Mutations

16

1.1
Location : getDatabase
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Schema::getDatabase → NO_COVERAGE

24

1.1
Location : getTable
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Schema::getTable → NO_COVERAGE

32

1.1
Location : getColumn
Killed by : none
replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Schema::getColumn → NO_COVERAGE

40

1.1
Location : getRow
Killed by : none
replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Schema::getRow → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.16.1