Row.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 Row implements Serializable {
9
10
    private String query = StringUtils.EMPTY;
11
    private Fields fields = new Fields();
12
13
    public String getQuery() {
14 1 1. getQuery : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Row::getQuery → NO_COVERAGE
        return this.query;
15
    }
16
17
    public void setQuery(String query) {
18
        this.query = query;
19
    }
20
21
    public Fields getFields() {
22 1 1. getFields : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Row::getFields → NO_COVERAGE
        return this.fields;
23
    }
24
25
    public void setFields(Fields fields) {
26
        this.fields = fields;
27
    }
28
}

Mutations

14

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

22

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

Active mutators

Tests examined


Report generated by PIT 1.16.1