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 Schema schema = new Schema(); | |
12 | private Schema zip = new Schema(); | |
13 | private Schema dios = new Schema(); | |
14 | private File file = new File(); | |
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 File getFile() { | |
49 |
1
1. getFile : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/Resource::getFile → NO_COVERAGE |
return this.file; |
50 | } | |
51 | ||
52 | public void setFile(File file) { | |
53 | this.file = file; | |
54 | } | |
55 | } | |
Mutations | ||
17 |
1.1 |
|
25 |
1.1 |
|
33 |
1.1 |
|
41 |
1.1 |
|
49 |
1.1 |