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 2.2 3.3 |
|
21 |
1.1 2.2 3.3 |