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