1 | package com.jsql.model.accessible.vendor.mysql; | |
2 | ||
3 | import org.apache.commons.lang3.StringUtils; | |
4 | ||
5 | import java.io.Serializable; | |
6 | ||
7 | public class File implements Serializable { | |
8 | ||
9 | private String privilege = StringUtils.EMPTY; | |
10 | private String read = StringUtils.EMPTY; | |
11 | ||
12 | public String getPrivilege() { | |
13 |
1
1. getPrivilege : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/File::getPrivilege → NO_COVERAGE |
return this.privilege; |
14 | } | |
15 | ||
16 | public void setPrivilege(String privilege) { | |
17 | this.privilege = privilege; | |
18 | } | |
19 | ||
20 | public String getRead() { | |
21 |
1
1. getRead : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/File::getRead → NO_COVERAGE |
return this.read; |
22 | } | |
23 | ||
24 | public void setRead(String read) { | |
25 | this.read = read; | |
26 | } | |
27 | } | |
Mutations | ||
13 |
1.1 |
|
21 |
1.1 |