TemplateResolverOptions.java

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 1 1. getTemplateMode : replaced return value with "" for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getTemplateMode → RUN_ERROR
		return templateMode;
14
	}
15
16
	public void setTemplateMode(String templateMode) {
17
		this.templateMode = templateMode;
18
	}
19
20
	public Boolean getCacheable() {
21 2 1. getCacheable : replaced Boolean return with False for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → RUN_ERROR
2. getCacheable : replaced Boolean return with True for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → RUN_ERROR
		return cacheable;
22
	}
23
24
	public void setCacheable(Boolean cacheable) {
25
		this.cacheable = cacheable;
26
	}
27
28
}

Mutations

13

1.1
Location : getTemplateMode
Killed by :
replaced return value with "" for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getTemplateMode → RUN_ERROR

21

1.1
Location : getCacheable
Killed by :
replaced Boolean return with False for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → RUN_ERROR

2.2
Location : getCacheable
Killed by :
replaced Boolean return with True for fr/sii/ogham/template/thymeleaf/common/TemplateResolverOptions::getCacheable → RUN_ERROR

Active mutators

Tests examined


Report generated by PIT 1.13.1