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