1 | package fr.sii.ogham.core.builder.env.props; | |
2 | ||
3 | import java.util.Properties; | |
4 | ||
5 | public class Props extends AbstractProps { | |
6 | private final Properties properties; | |
7 | ||
8 | public Props(Properties properties, int priority, int index) { | |
9 | super(priority, index); | |
10 | this.properties = properties; | |
11 | } | |
12 | ||
13 | @Override | |
14 | public Properties getProps() { | |
15 |
6
1. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/Props::getProps → NO_COVERAGE 2. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/Props::getProps → KILLED 3. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/Props::getProps → KILLED 4. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/Props::getProps → KILLED 5. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/Props::getProps → KILLED 6. getProps : replaced return value with null for fr/sii/ogham/core/builder/env/props/Props::getProps → KILLED |
return properties; |
16 | } | |
17 | } | |
Mutations | ||
15 |
1.1 2.2 3.3 4.4 5.5 6.6 |