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 ModelYaml implements Serializable { | |
9 | ||
10 | private String vendor = StringUtils.EMPTY; | |
11 | private Resource resource = new Resource(); | |
12 | private Strategy strategy = new Strategy(); | |
13 | ||
14 | public String getVendor() { | |
15 |
1
1. getVendor : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/ModelYaml::getVendor → SURVIVED |
return this.vendor; |
16 | } | |
17 | ||
18 | public void setVendor(String vendor) { | |
19 | this.vendor = vendor; | |
20 | } | |
21 | ||
22 | public Resource getResource() { | |
23 |
1
1. getResource : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/ModelYaml::getResource → NO_COVERAGE |
return this.resource; |
24 | } | |
25 | ||
26 | public void setResource(Resource resource) { | |
27 | this.resource = resource; | |
28 | } | |
29 | ||
30 | public Strategy getStrategy() { | |
31 |
1
1. getStrategy : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/ModelYaml::getStrategy → NO_COVERAGE |
return this.strategy; |
32 | } | |
33 | ||
34 | public void setStrategy(Strategy strategy) { | |
35 | this.strategy = strategy; | |
36 | } | |
37 | } | |
Mutations | ||
15 |
1.1 |
|
23 |
1.1 |
|
31 |
1.1 |