|
1
|
|
package fr.sii.ogham.spring.common; |
|
2
|
|
|
|
3
|
|
import org.springframework.boot.context.properties.NestedConfigurationProperty; |
|
4
|
|
|
|
5
|
|
public class OghamResolutionProperties extends PrefixSuffixProperties { |
|
6
|
|
@NestedConfigurationProperty |
|
7
|
|
private PrefixSuffixProperties classpath = new PrefixSuffixProperties(); |
|
8
|
|
@NestedConfigurationProperty |
|
9
|
|
private PrefixSuffixProperties file = new PrefixSuffixProperties(); |
|
10
|
|
|
|
11
|
|
public PrefixSuffixProperties getClasspath() { |
|
12
|
2
1. getClasspath : replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getClasspath → KILLED
2. getClasspath : replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getClasspath → KILLED
|
return classpath; |
|
13
|
|
} |
|
14
|
|
|
|
15
|
|
public void setClasspath(PrefixSuffixProperties classpath) { |
|
16
|
|
this.classpath = classpath; |
|
17
|
|
} |
|
18
|
|
|
|
19
|
|
public PrefixSuffixProperties getFile() { |
|
20
|
2
1. getFile : replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getFile → KILLED
2. getFile : replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getFile → KILLED
|
return file; |
|
21
|
|
} |
|
22
|
|
|
|
23
|
|
public void setFile(PrefixSuffixProperties file) { |
|
24
|
|
this.file = file; |
|
25
|
|
} |
|
26
|
|
|
|
27
|
|
} |
| | Mutations |
| 12 |
|
1.1 Location : getClasspath Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getClasspath → KILLED 2.2 Location : getClasspath Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getClasspath → KILLED
|
| 20 |
|
1.1 Location : getFile Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getFile → KILLED 2.2 Location : getFile Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/spring/common/OghamResolutionProperties::getFile → KILLED
|