| 1 | ||
| 2 | package com.jsql.model.injection.vendor.model.yaml; | |
| 3 | ||
| 4 | import java.io.Serializable; | |
| 5 | import java.util.ArrayList; | |
| 6 | import java.util.List; | |
| 7 | ||
| 8 | public class Error implements Serializable { | |
| 9 | ||
| 10 | private List<Method> method = new ArrayList<>(); | |
| 11 | ||
| 12 | public List<Method> getMethod() { | |
| 13 |
1
1. getMethod : replaced return value with Collections.emptyList for com/jsql/model/injection/vendor/model/yaml/Error::getMethod → NO_COVERAGE |
return this.method; |
| 14 | } | |
| 15 | ||
| 16 | public void setMethod(List<Method> method) { | |
| 17 | this.method = method; | |
| 18 | } | |
| 19 | } | |
Mutations | ||
| 13 |
1.1 |