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 File implements Serializable { | |
9 | ||
10 | private String privilege = StringUtils.EMPTY; | |
11 | private String read = StringUtils.EMPTY; | |
12 | private Write write = new Write(); | |
13 | ||
14 | public String getPrivilege() { | |
15 |
1
1. getPrivilege : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/File::getPrivilege → NO_COVERAGE |
return this.privilege; |
16 | } | |
17 | ||
18 | public void setPrivilege(String privilege) { | |
19 | this.privilege = privilege; | |
20 | } | |
21 | ||
22 | public String getRead() { | |
23 |
1
1. getRead : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/File::getRead → NO_COVERAGE |
return this.read; |
24 | } | |
25 | ||
26 | public void setRead(String read) { | |
27 | this.read = read; | |
28 | } | |
29 | ||
30 | public Write getWrite() { | |
31 |
1
1. getWrite : replaced return value with null for com/jsql/model/injection/vendor/model/yaml/File::getWrite → NO_COVERAGE |
return this.write; |
32 | } | |
33 | ||
34 | public void setWrite(Write write) { | |
35 | this.write = write; | |
36 | } | |
37 | } | |
Mutations | ||
15 |
1.1 |
|
23 |
1.1 |
|
31 |
1.1 |