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