| 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 Binary implements Serializable { | |
| 9 | ||
| 10 | private Test test = new Test(); | |
| 11 | private String blind = StringUtils.EMPTY; | |
| 12 | private String time = StringUtils.EMPTY; | |
| 13 | private String multibit = StringUtils.EMPTY; | |
| 14 | private String modeAnd = "and"; | |
| 15 | private String modeOr = "or"; | |
| 16 | private String modeStack = ";"; | |
| 17 | ||
| 18 | public Test getTest() { | |
| 19 |
1
1. getTest : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Binary::getTest → NO_COVERAGE |
return this.test; |
| 20 | } | |
| 21 | ||
| 22 | public void setTest(Test test) { | |
| 23 | this.test = test; | |
| 24 | } | |
| 25 | ||
| 26 | public String getBlind() { | |
| 27 |
1
1. getBlind : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Binary::getBlind → NO_COVERAGE |
return this.blind; |
| 28 | } | |
| 29 | ||
| 30 | public void setBlind(String blind) { | |
| 31 | this.blind = blind; | |
| 32 | } | |
| 33 | ||
| 34 | public String getTime() { | |
| 35 |
1
1. getTime : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Binary::getTime → NO_COVERAGE |
return this.time; |
| 36 | } | |
| 37 | ||
| 38 | public void setTime(String time) { | |
| 39 | this.time = time; | |
| 40 | } | |
| 41 | ||
| 42 | public String getModeAnd() { | |
| 43 |
1
1. getModeAnd : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Binary::getModeAnd → NO_COVERAGE |
return this.modeAnd; |
| 44 | } | |
| 45 | ||
| 46 | public void setModeAnd(String modeAnd) { | |
| 47 | this.modeAnd = modeAnd; | |
| 48 | } | |
| 49 | ||
| 50 | public String getModeOr() { | |
| 51 |
1
1. getModeOr : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Binary::getModeOr → NO_COVERAGE |
return this.modeOr; |
| 52 | } | |
| 53 | ||
| 54 | public void setModeOr(String modeOr) { | |
| 55 | this.modeOr = modeOr; | |
| 56 | } | |
| 57 | ||
| 58 | public String getModeStack() { | |
| 59 |
1
1. getModeStack : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Binary::getModeStack → NO_COVERAGE |
return this.modeStack; |
| 60 | } | |
| 61 | ||
| 62 | public void setModeStack(String modeStack) { | |
| 63 | this.modeStack = modeStack; | |
| 64 | } | |
| 65 | ||
| 66 | public String getMultibit() { | |
| 67 |
1
1. getMultibit : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Binary::getMultibit → NO_COVERAGE |
return this.multibit; |
| 68 | } | |
| 69 | ||
| 70 | public void setMultibit(String multibit) { | |
| 71 | this.multibit = multibit; | |
| 72 | } | |
| 73 | } | |
Mutations | ||
| 19 |
1.1 |
|
| 27 |
1.1 |
|
| 35 |
1.1 |
|
| 43 |
1.1 |
|
| 51 |
1.1 |
|
| 59 |
1.1 |
|
| 67 |
1.1 |