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 Method implements Serializable { | |
9 | ||
10 | private String name = StringUtils.EMPTY; | |
11 | private String query = StringUtils.EMPTY; | |
12 | private Integer capacity = 0; | |
13 | ||
14 | public String getName() { | |
15 |
1
1. getName : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Method::getName → NO_COVERAGE |
return this.name; |
16 | } | |
17 | ||
18 | public void setName(String name) { | |
19 | this.name = name; | |
20 | } | |
21 | ||
22 | public String getQuery() { | |
23 |
1
1. getQuery : replaced return value with "" for com/jsql/model/injection/vendor/model/yaml/Method::getQuery → NO_COVERAGE |
return this.query; |
24 | } | |
25 | ||
26 | public void setQuery(String query) { | |
27 | this.query = query; | |
28 | } | |
29 | ||
30 | public Integer getCapacity() { | |
31 |
1
1. getCapacity : replaced Integer return value with 0 for com/jsql/model/injection/vendor/model/yaml/Method::getCapacity → NO_COVERAGE |
return this.capacity; |
32 | } | |
33 | ||
34 | public void setCapacity(Integer capacity) { | |
35 | this.capacity = capacity; | |
36 | } | |
37 | } | |
Mutations | ||
15 |
1.1 |
|
23 |
1.1 |
|
31 |
1.1 |