| 1 | ||
| 2 | package com.jsql.model.accessible.vendor.sqlite; | |
| 3 | ||
| 4 | import org.apache.commons.lang3.StringUtils; | |
| 5 | ||
| 6 | import java.io.Serializable; | |
| 7 | ||
| 8 | public class ModelYamlSqlite implements Serializable { | |
| 9 | ||
| 10 | private Extension extension = new Extension(); | |
| 11 | private String writeFile = StringUtils.EMPTY; | |
| 12 | private String udf = StringUtils.EMPTY; | |
| 13 | ||
| 14 | public String getWriteFile() { | |
| 15 |
1
1. getWriteFile : replaced return value with "" for com/jsql/model/accessible/vendor/sqlite/ModelYamlSqlite::getWriteFile → NO_COVERAGE |
return this.writeFile; |
| 16 | } | |
| 17 | ||
| 18 | public void setWriteFile(String writeFile) { | |
| 19 | this.writeFile = writeFile; | |
| 20 | } | |
| 21 | ||
| 22 | public String getUdf() { | |
| 23 |
1
1. getUdf : replaced return value with "" for com/jsql/model/accessible/vendor/sqlite/ModelYamlSqlite::getUdf → NO_COVERAGE |
return this.udf; |
| 24 | } | |
| 25 | ||
| 26 | public void setUdf(String udf) { | |
| 27 | this.udf = udf; | |
| 28 | } | |
| 29 | ||
| 30 | public Extension getExtension() { | |
| 31 |
1
1. getExtension : replaced return value with null for com/jsql/model/accessible/vendor/sqlite/ModelYamlSqlite::getExtension → NO_COVERAGE |
return this.extension; |
| 32 | } | |
| 33 | ||
| 34 | public void setExtension(Extension extension) { | |
| 35 | this.extension = extension; | |
| 36 | } | |
| 37 | } | |
Mutations | ||
| 15 |
1.1 |
|
| 23 |
1.1 |
|
| 31 |
1.1 |