| 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 Fields implements Serializable { | |
| 9 | ||
| 10 | private String field = StringUtils.EMPTY; | |
| 11 | private String concat = StringUtils.EMPTY; | |
| 12 | ||
| 13 | public String getField() { | |
| 14 |
1
1. getField : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Fields::getField → NO_COVERAGE |
return this.field; |
| 15 | } | |
| 16 | ||
| 17 | public void setField(String field) { | |
| 18 | this.field = field; | |
| 19 | } | |
| 20 | ||
| 21 | public String getConcat() { | |
| 22 |
1
1. getConcat : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Fields::getConcat → NO_COVERAGE |
return this.concat; |
| 23 | } | |
| 24 | ||
| 25 | public void setConcat(String concat) { | |
| 26 | this.concat = concat; | |
| 27 | } | |
| 28 | } | |
Mutations | ||
| 14 |
1.1 |
|
| 22 |
1.1 |