| 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 AddFunction implements Serializable { | |
| 8 | ||
| 9 | private String drop = StringUtils.EMPTY; | |
| 10 | private String create = StringUtils.EMPTY; | |
| 11 | private String confirm = StringUtils.EMPTY; | |
| 12 | ||
| 13 | public String getDrop() { | |
| 14 |
1
1. getDrop : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/AddFunction::getDrop → NO_COVERAGE |
return this.drop; |
| 15 | } | |
| 16 | ||
| 17 | public void setDrop(String drop) { | |
| 18 | this.drop = drop; | |
| 19 | } | |
| 20 | ||
| 21 | public String getCreate() { | |
| 22 |
1
1. getCreate : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/AddFunction::getCreate → NO_COVERAGE |
return this.create; |
| 23 | } | |
| 24 | ||
| 25 | public void setCreate(String create) { | |
| 26 | this.create = create; | |
| 27 | } | |
| 28 | ||
| 29 | public String getConfirm() { | |
| 30 |
1
1. getConfirm : replaced return value with "" for com/jsql/model/accessible/vendor/mysql/AddFunction::getConfirm → NO_COVERAGE |
return this.confirm; |
| 31 | } | |
| 32 | ||
| 33 | public void setConfirm(String confirm) { | |
| 34 | this.confirm = confirm; | |
| 35 | } | |
| 36 | } | |
Mutations | ||
| 14 |
1.1 |
|
| 22 |
1.1 |
|
| 30 |
1.1 |