1 | package com.jsql.model.accessible.vendor.derby; | |
2 | ||
3 | import org.apache.commons.lang3.StringUtils; | |
4 | ||
5 | public class File { | |
6 | ||
7 | private String createTable = StringUtils.EMPTY; | |
8 | private String read = StringUtils.EMPTY; | |
9 | private String write = StringUtils.EMPTY; | |
10 | ||
11 | public String getCreateTable() { | |
12 |
1
1. getCreateTable : replaced return value with "" for com/jsql/model/accessible/vendor/derby/File::getCreateTable → NO_COVERAGE |
return this.createTable; |
13 | } | |
14 | ||
15 | public void setCreateTable(String createTable) { | |
16 | this.createTable = createTable; | |
17 | } | |
18 | ||
19 | public String getRead() { | |
20 |
1
1. getRead : replaced return value with "" for com/jsql/model/accessible/vendor/derby/File::getRead → NO_COVERAGE |
return this.read; |
21 | } | |
22 | ||
23 | public void setRead(String read) { | |
24 | this.read = read; | |
25 | } | |
26 | ||
27 | public String getWrite() { | |
28 |
1
1. getWrite : replaced return value with "" for com/jsql/model/accessible/vendor/derby/File::getWrite → NO_COVERAGE |
return this.write; |
29 | } | |
30 | ||
31 | public void setWrite(String write) { | |
32 | this.write = write; | |
33 | } | |
34 | } | |
Mutations | ||
12 |
1.1 |
|
20 |
1.1 |
|
28 |
1.1 |