ExternalCss.java

1
package fr.sii.ogham.html.inliner;
2
3
import fr.sii.ogham.core.resource.path.ResourcePath;
4
5
public class ExternalCss {
6
	private ResourcePath path;
7
	
8
	private String content;
9
10
	public ExternalCss(ResourcePath path, String content) {
11
		super();
12
		this.path = path;
13
		this.content = content;
14
	}
15
16
	public ResourcePath getPath() {
17 3 1. getPath : replaced return value with null for fr/sii/ogham/html/inliner/ExternalCss::getPath → NO_COVERAGE
2. getPath : replaced return value with null for fr/sii/ogham/html/inliner/ExternalCss::getPath → KILLED
3. getPath : replaced return value with null for fr/sii/ogham/html/inliner/ExternalCss::getPath → KILLED
		return path;
18
	}
19
20
	public String getContent() {
21 3 1. getContent : replaced return value with "" for fr/sii/ogham/html/inliner/ExternalCss::getContent → NO_COVERAGE
2. getContent : replaced return value with "" for fr/sii/ogham/html/inliner/ExternalCss::getContent → KILLED
3. getContent : replaced return value with "" for fr/sii/ogham/html/inliner/ExternalCss::getContent → KILLED
		return content;
22
	}
23
}

Mutations

17

1.1
Location : getPath
Killed by : oghamcore.ut.html.inliner.impl.JsoupCssInlinerTest.mixedStyles(oghamcore.ut.html.inliner.impl.JsoupCssInlinerTest)
replaced return value with null for fr/sii/ogham/html/inliner/ExternalCss::getPath → KILLED

2.2
Location : getPath
Killed by : oghamall.it.html.translator.JsoupInlineCssTranslatorTest.externalStyles(oghamall.it.html.translator.JsoupInlineCssTranslatorTest)
replaced return value with null for fr/sii/ogham/html/inliner/ExternalCss::getPath → KILLED

3.3
Location : getPath
Killed by : none
replaced return value with null for fr/sii/ogham/html/inliner/ExternalCss::getPath → NO_COVERAGE

21

1.1
Location : getContent
Killed by : oghamcore.ut.html.inliner.impl.JsoupCssInlinerTest.mixedStyles(oghamcore.ut.html.inliner.impl.JsoupCssInlinerTest)
replaced return value with "" for fr/sii/ogham/html/inliner/ExternalCss::getContent → KILLED

2.2
Location : getContent
Killed by : oghamall.it.html.translator.JsoupInlineCssTranslatorTest.externalStyles(oghamall.it.html.translator.JsoupInlineCssTranslatorTest)
replaced return value with "" for fr/sii/ogham/html/inliner/ExternalCss::getContent → KILLED

3.3
Location : getContent
Killed by : none
replaced return value with "" for fr/sii/ogham/html/inliner/ExternalCss::getContent → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT OGHAM