1 | ||
2 | package com.jsql.model.injection.vendor.model.yaml; | |
3 | ||
4 | import org.apache.commons.lang3.StringUtils; | |
5 | ||
6 | import java.io.Serializable; | |
7 | ||
8 | public class Write implements Serializable { | |
9 | ||
10 | private String body = StringUtils.EMPTY; | |
11 | private String path = StringUtils.EMPTY; | |
12 | ||
13 | public String getBody() { | |
14 |
1
1. getBody : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Write::getBody → NO_COVERAGE |
return this.body; |
15 | } | |
16 | ||
17 | public void setBody(String body) { | |
18 | this.body = body; | |
19 | } | |
20 | ||
21 | public String getPath() { | |
22 |
1
1. getPath : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Write::getPath → NO_COVERAGE |
return this.path; |
23 | } | |
24 | ||
25 | public void setPath(String path) { | |
26 | this.path = path; | |
27 | } | |
28 | } | |
Mutations | ||
14 |
1.1 |
|
22 |
1.1 |