| 1 | package fr.sii.ogham.template.thymeleaf.common; | |
| 2 | ||
| 3 | /** | |
| 4 | * | |
| 5 | * @author Cyril Dejonghe | |
| 6 | * | |
| 7 | */ | |
| 8 | public class TemplateResolverOptions { | |
| 9 | private String templateMode; | |
| 10 | private Boolean cacheable; | |
| 11 | ||
| 12 | public String getTemplateMode() { | |
| 13 |
5
1. getTemplateMode : replaced return value with "" for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getTemplateMode → NO_COVERAGE 2. getTemplateMode : replaced return value with "" for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getTemplateMode → TIMED_OUT 3. getTemplateMode : replaced return value with "" for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getTemplateMode → KILLED 4. getTemplateMode : replaced return value with "" for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getTemplateMode → KILLED 5. getTemplateMode : replaced return value with "" for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getTemplateMode → KILLED |
return templateMode; |
| 14 | } | |
| 15 | ||
| 16 | public void setTemplateMode(String templateMode) { | |
| 17 | this.templateMode = templateMode; | |
| 18 | } | |
| 19 | ||
| 20 | public Boolean getCacheable() { | |
| 21 |
10
1. getCacheable : replaced Boolean return with False for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → SURVIVED 2. getCacheable : replaced Boolean return with False for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → NO_COVERAGE 3. getCacheable : replaced Boolean return with True for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → SURVIVED 4. getCacheable : replaced Boolean return with True for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → NO_COVERAGE 5. getCacheable : replaced Boolean return with False for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → TIMED_OUT 6. getCacheable : replaced Boolean return with True for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → TIMED_OUT 7. getCacheable : replaced Boolean return with False for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → KILLED 8. getCacheable : replaced Boolean return with False for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → KILLED 9. getCacheable : replaced Boolean return with True for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → KILLED 10. getCacheable : replaced Boolean return with True for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → KILLED |
return cacheable; |
| 22 | } | |
| 23 | ||
| 24 | public void setCacheable(Boolean cacheable) { | |
| 25 | this.cacheable = cacheable; | |
| 26 | } | |
| 27 | ||
| 28 | } | |
Mutations | ||
| 13 |
1.1 2.2 3.3 4.4 5.5 |
|
| 21 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 |