| 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 Resource implements Serializable { | |
| 9 | ||
| 10 | private String info = StringUtils.EMPTY; | |
| 11 | private String exploit = StringUtils.EMPTY; | |
| 12 | private Schema schema = new Schema(); | |
| 13 | private Schema zip = new Schema(); | |
| 14 | private Schema dios = new Schema(); | |
| 15 | ||
| 16 | public String getInfo() { | |
| 17 |
1
1. getInfo : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Resource::getInfo → NO_COVERAGE |
return this.info; |
| 18 | } | |
| 19 | ||
| 20 | public void setInfo(String info) { | |
| 21 | this.info = info; | |
| 22 | } | |
| 23 | ||
| 24 | public Schema getSchema() { | |
| 25 |
1
1. getSchema : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Resource::getSchema → NO_COVERAGE |
return this.schema; |
| 26 | } | |
| 27 | ||
| 28 | public void setSchema(Schema schema) { | |
| 29 | this.schema = schema; | |
| 30 | } | |
| 31 | ||
| 32 | public Schema getZip() { | |
| 33 |
1
1. getZip : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Resource::getZip → NO_COVERAGE |
return this.zip; |
| 34 | } | |
| 35 | ||
| 36 | public void setZip(Schema zip) { | |
| 37 | this.zip = zip; | |
| 38 | } | |
| 39 | ||
| 40 | public Schema getDios() { | |
| 41 |
1
1. getDios : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Resource::getDios → NO_COVERAGE |
return this.dios; |
| 42 | } | |
| 43 | ||
| 44 | public void setDios(Schema dios) { | |
| 45 | this.dios = dios; | |
| 46 | } | |
| 47 | ||
| 48 | public String getExploit() { | |
| 49 |
1
1. getExploit : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Resource::getExploit → SURVIVED |
return this.exploit; |
| 50 | } | |
| 51 | ||
| 52 | public void setExploit(String exploit) { | |
| 53 | this.exploit = exploit; | |
| 54 | } | |
| 55 | } | |
Mutations | ||
| 17 |
1.1 |
|
| 25 |
1.1 |
|
| 33 |
1.1 |
|
| 41 |
1.1 |
|
| 49 |
1.1 |