1
|
|
package fr.sii.ogham.core.builder.env; |
2
|
|
|
3
|
|
import static fr.sii.ogham.core.CoreConstants.DEFAULT_CLASSPATH_PROPERTY_PRIORITY; |
4
|
|
import static fr.sii.ogham.core.CoreConstants.DEFAULT_FILE_PROPERTY_PRIORITY; |
5
|
|
import static fr.sii.ogham.core.CoreConstants.DEFAULT_MANUAL_PROPERTY_PRIORITY; |
6
|
|
import static fr.sii.ogham.core.CoreConstants.DEFAULT_SYSTEM_PROPERTY_PRIORITY; |
7
|
|
|
8
|
|
import java.util.ArrayList; |
9
|
|
import java.util.Collections; |
10
|
|
import java.util.Comparator; |
11
|
|
import java.util.List; |
12
|
|
import java.util.Properties; |
13
|
|
|
14
|
|
import fr.sii.ogham.core.builder.env.props.AbstractProps; |
15
|
|
import fr.sii.ogham.core.builder.env.props.Props; |
16
|
|
import fr.sii.ogham.core.builder.env.props.PropsBuilder; |
17
|
|
import fr.sii.ogham.core.builder.env.props.PropsPath; |
18
|
|
import fr.sii.ogham.core.convert.Converter; |
19
|
|
import fr.sii.ogham.core.convert.DefaultConverter; |
20
|
|
import fr.sii.ogham.core.env.FirstExistingPropertiesResolver; |
21
|
|
import fr.sii.ogham.core.env.JavaPropertiesResolver; |
22
|
|
import fr.sii.ogham.core.env.PropertyResolver; |
23
|
|
import fr.sii.ogham.core.fluent.AbstractParent; |
24
|
|
import fr.sii.ogham.core.util.BuilderUtils; |
25
|
|
|
26
|
|
/** |
27
|
|
* Builds the {@link PropertyResolver}: |
28
|
|
* <ul> |
29
|
|
* <li>If a custom resolver is defined, use it directly</li> |
30
|
|
* <li>If no custom resolver, use the {@link JavaPropertiesResolver} with merged |
31
|
|
* {@link Properties} and converter instance provided by |
32
|
|
* {@link ConverterBuilder#build()}</li> |
33
|
|
* </ul> |
34
|
|
* |
35
|
|
* @author Aurélien Baudet |
36
|
|
* |
37
|
|
* @param <P> |
38
|
|
* the type of the parent builder (when calling {@link #and()} |
39
|
|
* method) |
40
|
|
*/ |
41
|
|
public class SimpleEnvironmentBuilder<P> extends AbstractParent<P> implements EnvironmentBuilder<P> { |
42
|
|
private PropertyResolver resolver; |
43
|
|
private ConverterBuilder<EnvironmentBuilder<P>> converterBuilder; |
44
|
|
private List<AbstractProps> props; |
45
|
|
private int currentIndex; |
46
|
|
|
47
|
|
/** |
48
|
|
* Initializes the builder with the provided parent (parent is used when |
49
|
|
* calling {@link #and()} method). |
50
|
|
* |
51
|
|
* @param parent |
52
|
|
* the parent instance |
53
|
|
*/ |
54
|
|
public SimpleEnvironmentBuilder(P parent) { |
55
|
|
super(parent); |
56
|
|
props = new ArrayList<>(); |
57
|
|
currentIndex = 0; |
58
|
|
} |
59
|
|
|
60
|
|
@Override |
61
|
|
public EnvironmentBuilder<P> override() { |
62
|
1
1. override : removed call to java/util/List::clear → NO_COVERAGE
|
props.clear(); |
63
|
1
1. override : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::override → NO_COVERAGE
|
return this; |
64
|
|
} |
65
|
|
|
66
|
|
@Override |
67
|
|
public EnvironmentBuilder<P> properties(String path) { |
68
|
|
int priority = DEFAULT_CLASSPATH_PROPERTY_PRIORITY; |
69
|
3
1. properties : negated conditional → SURVIVED
2. properties : negated conditional → NO_COVERAGE
3. properties : negated conditional → KILLED
|
if(path.startsWith("file:")) { |
70
|
|
priority = DEFAULT_FILE_PROPERTY_PRIORITY; |
71
|
|
} |
72
|
3
1. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
2. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → SURVIVED
3. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
return properties(path, priority); |
73
|
|
} |
74
|
|
|
75
|
|
@Override |
76
|
|
public EnvironmentBuilder<P> properties(String path, int priority) { |
77
|
|
props.add(new PropsPath(path, priority, currentIndex)); |
78
|
2
1. properties : Replaced integer addition with subtraction → SURVIVED
2. properties : Replaced integer addition with subtraction → NO_COVERAGE
|
currentIndex++; |
79
|
3
1. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → SURVIVED
2. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
3. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
return this; |
80
|
|
} |
81
|
|
|
82
|
|
@Override |
83
|
|
public SimpleEnvironmentBuilder<P> properties(Properties properties) { |
84
|
3
1. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
2. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
3. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
return properties(properties, DEFAULT_MANUAL_PROPERTY_PRIORITY); |
85
|
|
} |
86
|
|
|
87
|
|
@Override |
88
|
|
public SimpleEnvironmentBuilder<P> properties(Properties properties, int priority) { |
89
|
|
props.add(new Props(properties, priority, currentIndex)); |
90
|
2
1. properties : Replaced integer addition with subtraction → SURVIVED
2. properties : Replaced integer addition with subtraction → NO_COVERAGE
|
currentIndex++; |
91
|
3
1. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
2. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
3. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
return this; |
92
|
|
} |
93
|
|
|
94
|
|
@Override |
95
|
|
public SimpleEnvironmentBuilder<P> systemProperties() { |
96
|
8
1. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → NO_COVERAGE
2. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
3. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
4. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
5. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
6. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
7. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
8. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
|
return systemProperties(DEFAULT_SYSTEM_PROPERTY_PRIORITY); |
97
|
|
} |
98
|
|
|
99
|
|
@Override |
100
|
|
public SimpleEnvironmentBuilder<P> systemProperties(int priority) { |
101
|
|
props.add(new Props(BuilderUtils.getDefaultProperties(), priority, currentIndex)); |
102
|
2
1. systemProperties : Replaced integer addition with subtraction → NO_COVERAGE
2. systemProperties : Replaced integer addition with subtraction → SURVIVED
|
currentIndex++; |
103
|
8
1. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → NO_COVERAGE
2. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
3. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
4. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
5. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
6. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
7. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
8. systemProperties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
|
return this; |
104
|
|
} |
105
|
|
|
106
|
|
@Override |
107
|
|
public ConverterBuilder<EnvironmentBuilder<P>> converter() { |
108
|
8
1. converter : negated conditional → NO_COVERAGE
2. converter : negated conditional → KILLED
3. converter : negated conditional → KILLED
4. converter : negated conditional → KILLED
5. converter : negated conditional → KILLED
6. converter : negated conditional → KILLED
7. converter : negated conditional → KILLED
8. converter : negated conditional → KILLED
|
if (converterBuilder == null) { |
109
|
|
converterBuilder = new SimpleConverterBuilder<>(this); |
110
|
|
} |
111
|
8
1. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → NO_COVERAGE
2. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
3. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
4. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
5. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
6. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
7. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
8. converter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
|
return converterBuilder; |
112
|
|
} |
113
|
|
|
114
|
|
@Override |
115
|
|
public SimpleEnvironmentBuilder<P> resolver(PropertyResolver resolver) { |
116
|
|
this.resolver = resolver; |
117
|
2
1. resolver : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::resolver → SURVIVED
2. resolver : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::resolver → NO_COVERAGE
|
return this; |
118
|
|
} |
119
|
|
|
120
|
|
@Override |
121
|
|
public PropertiesBuilder<EnvironmentBuilder<P>> properties() { |
122
|
6
1. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
2. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
3. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
4. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
5. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
6. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
return properties(DEFAULT_MANUAL_PROPERTY_PRIORITY); |
123
|
|
} |
124
|
|
|
125
|
|
@Override |
126
|
|
public PropertiesBuilder<EnvironmentBuilder<P>> properties(int priority) { |
127
|
|
PropertiesBuilder<EnvironmentBuilder<P>> propsBuilder = new SimplePropertiesBuilder<>(this); |
128
|
|
props.add(new PropsBuilder(propsBuilder, priority, currentIndex)); |
129
|
2
1. properties : Replaced integer addition with subtraction → SURVIVED
2. properties : Replaced integer addition with subtraction → NO_COVERAGE
|
currentIndex++; |
130
|
6
1. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
2. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
3. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
4. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
5. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
6. properties : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
return propsBuilder; |
131
|
|
} |
132
|
|
|
133
|
|
/** |
134
|
|
* Build the {@link PropertyResolver}: |
135
|
|
* <ul> |
136
|
|
* <li>If a custom resolver is defined, use it directly</li> |
137
|
|
* <li>If no custom resolver, use the {@link JavaPropertiesResolver} with |
138
|
|
* merged {@link Properties} and converter instance provided by |
139
|
|
* {@link ConverterBuilder#build()}</li> |
140
|
|
* </ul> |
141
|
|
*/ |
142
|
|
@Override |
143
|
|
public PropertyResolver build() { |
144
|
8
1. build : negated conditional → NO_COVERAGE
2. build : negated conditional → KILLED
3. build : negated conditional → KILLED
4. build : negated conditional → KILLED
5. build : negated conditional → KILLED
6. build : negated conditional → KILLED
7. build : negated conditional → KILLED
8. build : negated conditional → KILLED
|
if (resolver != null) { |
145
|
3
1. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → NO_COVERAGE
2. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
3. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
|
return resolver; |
146
|
|
} |
147
|
|
Converter converter = buildConverter(); |
148
|
|
List<PropertyResolver> delegates = buildProperties(converter); |
149
|
6
1. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → NO_COVERAGE
2. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
3. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
4. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
5. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
6. build : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
|
return new FirstExistingPropertiesResolver(delegates); |
150
|
|
} |
151
|
|
|
152
|
|
private Converter buildConverter() { |
153
|
5
1. buildConverter : negated conditional → NO_COVERAGE
2. buildConverter : negated conditional → SURVIVED
3. buildConverter : negated conditional → KILLED
4. buildConverter : negated conditional → KILLED
5. buildConverter : negated conditional → KILLED
|
if (converterBuilder != null) { |
154
|
6
1. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → NO_COVERAGE
2. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
3. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
4. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
5. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
6. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
|
return converterBuilder.build(); |
155
|
|
} |
156
|
4
1. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → NO_COVERAGE
2. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
3. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
4. buildConverter : replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
|
return new DefaultConverter(); |
157
|
|
} |
158
|
|
|
159
|
|
private List<PropertyResolver> buildProperties(Converter converter) { |
160
|
|
// sort by priority and then by registration order |
161
|
|
// highest priority comes first |
162
|
|
List<AbstractProps> orderedProps = new ArrayList<>(props); |
163
|
3
1. buildProperties : removed call to java/util/Collections::sort → SURVIVED
2. buildProperties : removed call to java/util/Collections::sort → NO_COVERAGE
3. buildProperties : removed call to java/util/Collections::sort → KILLED
|
Collections.sort(orderedProps, new PriorityComparator()); |
164
|
|
// build the resolvers separately |
165
|
|
List<PropertyResolver> builtProperties = new ArrayList<>(); |
166
|
|
for (AbstractProps prop : orderedProps) { |
167
|
|
builtProperties.add(new JavaPropertiesResolver(prop.getProps(), converter)); |
168
|
|
} |
169
|
6
1. buildProperties : replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → NO_COVERAGE
2. buildProperties : replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED
3. buildProperties : replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED
4. buildProperties : replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED
5. buildProperties : replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED
6. buildProperties : replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED
|
return builtProperties; |
170
|
|
} |
171
|
|
|
172
|
|
private static class PriorityComparator implements Comparator<AbstractProps> { |
173
|
|
|
174
|
|
@Override |
175
|
|
public int compare(AbstractProps o1, AbstractProps o2) { |
176
|
3
1. compare : negated conditional → SURVIVED
2. compare : negated conditional → NO_COVERAGE
3. compare : negated conditional → KILLED
|
if (o1.getPriority() == o2.getPriority()) { |
177
|
6
1. compare : changed conditional boundary → SURVIVED
2. compare : changed conditional boundary → NO_COVERAGE
3. compare : negated conditional → NO_COVERAGE
4. compare : negated conditional → SURVIVED
5. compare : replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → NO_COVERAGE
6. compare : replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → SURVIVED
|
return o1.getIndex() <= o2.getIndex() ? -1 : 1; |
178
|
|
} |
179
|
8
1. compare : changed conditional boundary → SURVIVED
2. compare : changed conditional boundary → NO_COVERAGE
3. compare : negated conditional → NO_COVERAGE
4. compare : negated conditional → SURVIVED
5. compare : replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → SURVIVED
6. compare : replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → NO_COVERAGE
7. compare : negated conditional → KILLED
8. compare : replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → KILLED
|
return o1.getPriority() <= o2.getPriority() ? 1 : -1; |
180
|
|
} |
181
|
|
|
182
|
|
} |
183
|
|
} |
| | Mutations |
62 |
|
1.1 Location : override Killed by : none removed call to java/util/List::clear → NO_COVERAGE
|
63 |
|
1.1 Location : override Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::override → NO_COVERAGE
|
69 |
|
1.1 Location : properties Killed by : oghamall.it.env.PropertyOverrideTest.externalThenPropertiesInCodeThenFile(oghamall.it.env.PropertyOverrideTest) negated conditional → KILLED 2.2 Location : properties Killed by : none negated conditional → SURVIVED 3.3 Location : properties Killed by : none negated conditional → NO_COVERAGE
|
72 |
|
1.1 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE 2.2 Location : properties Killed by : oghamall.it.optional.ImplementationSelectionTests.javaMailAvailable(oghamall.it.optional.ImplementationSelectionTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 3.3 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → SURVIVED
|
78 |
|
1.1 Location : properties Killed by : none Replaced integer addition with subtraction → SURVIVED 2.2 Location : properties Killed by : none Replaced integer addition with subtraction → NO_COVERAGE
|
79 |
|
1.1 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → SURVIVED 2.2 Location : properties Killed by : oghamall.it.optional.ImplementationSelectionTests.javaMailAvailable(oghamall.it.optional.ImplementationSelectionTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 3.3 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
|
84 |
|
1.1 Location : properties Killed by : oghamall.it.optional.ImplementationSelectionTests.javaMailAvailable(oghamall.it.optional.ImplementationSelectionTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 2.2 Location : properties Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.oghamPropertyShouldOverride(oghamjavamail.it.builder.JavaMailCustomConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 3.3 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
|
90 |
|
1.1 Location : properties Killed by : none Replaced integer addition with subtraction → SURVIVED 2.2 Location : properties Killed by : none Replaced integer addition with subtraction → NO_COVERAGE
|
91 |
|
1.1 Location : properties Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.oghamPropertyShouldOverride(oghamjavamail.it.builder.JavaMailCustomConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 2.2 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE 3.3 Location : properties Killed by : oghamall.it.optional.ImplementationSelectionTests.javaMailAvailable(oghamall.it.optional.ImplementationSelectionTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
96 |
|
1.1 Location : systemProperties Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 2.2 Location : systemProperties Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 3.3 Location : systemProperties Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 4.4 Location : systemProperties Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 5.5 Location : systemProperties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → NO_COVERAGE 6.6 Location : systemProperties Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 7.7 Location : systemProperties Killed by : oghamall.it.html.translator.JsoupInlineCssTranslatorTest.notHtml(oghamall.it.html.translator.JsoupInlineCssTranslatorTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 8.8 Location : systemProperties Killed by : oghamjavamail.it.UnreadableAttachmentTest.attachmentUnreadable(oghamjavamail.it.UnreadableAttachmentTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
|
102 |
|
1.1 Location : systemProperties Killed by : none Replaced integer addition with subtraction → NO_COVERAGE 2.2 Location : systemProperties Killed by : none Replaced integer addition with subtraction → SURVIVED
|
103 |
|
1.1 Location : systemProperties Killed by : oghamall.it.html.translator.JsoupInlineCssTranslatorTest.notHtml(oghamall.it.html.translator.JsoupInlineCssTranslatorTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 2.2 Location : systemProperties Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 3.3 Location : systemProperties Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 4.4 Location : systemProperties Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 5.5 Location : systemProperties Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 6.6 Location : systemProperties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → NO_COVERAGE 7.7 Location : systemProperties Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED 8.8 Location : systemProperties Killed by : oghamjavamail.it.UnreadableAttachmentTest.attachmentUnreadable(oghamjavamail.it.UnreadableAttachmentTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::systemProperties → KILLED
|
108 |
|
1.1 Location : converter Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) negated conditional → KILLED 2.2 Location : converter Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.noHostDefinedShouldFail(oghamjavamail.it.builder.JavaMailCustomConfigurationTest) negated conditional → KILLED 3.3 Location : converter Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec negated conditional → KILLED 4.4 Location : converter Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) negated conditional → KILLED 5.5 Location : converter Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest) negated conditional → KILLED 6.6 Location : converter Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest) negated conditional → KILLED 7.7 Location : converter Killed by : none negated conditional → NO_COVERAGE 8.8 Location : converter Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) negated conditional → KILLED
|
111 |
|
1.1 Location : converter Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED 2.2 Location : converter Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.noHostDefinedShouldFail(oghamjavamail.it.builder.JavaMailCustomConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED 3.3 Location : converter Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → NO_COVERAGE 4.4 Location : converter Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED 5.5 Location : converter Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED 6.6 Location : converter Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED 7.7 Location : converter Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED 8.8 Location : converter Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::converter → KILLED
|
117 |
|
1.1 Location : resolver Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::resolver → SURVIVED 2.2 Location : resolver Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::resolver → NO_COVERAGE
|
122 |
|
1.1 Location : properties Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 2.2 Location : properties Killed by : oghamcore.it.core.convert.CustomConverterTest.asDeveloperIUseMyCustomConverter(oghamcore.it.core.convert.CustomConverterTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 3.3 Location : properties Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 4.4 Location : properties Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 5.5 Location : properties Killed by : oghamjavamail.it.UnreadableAttachmentTest.attachmentUnreadable(oghamjavamail.it.UnreadableAttachmentTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 6.6 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE
|
129 |
|
1.1 Location : properties Killed by : none Replaced integer addition with subtraction → SURVIVED 2.2 Location : properties Killed by : none Replaced integer addition with subtraction → NO_COVERAGE
|
130 |
|
1.1 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → NO_COVERAGE 2.2 Location : properties Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 3.3 Location : properties Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 4.4 Location : properties Killed by : oghamjavamail.it.UnreadableAttachmentTest.attachmentUnreadable(oghamjavamail.it.UnreadableAttachmentTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 5.5 Location : properties Killed by : oghamcore.it.core.convert.CustomConverterTest.asDeveloperIUseMyCustomConverter(oghamcore.it.core.convert.CustomConverterTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED 6.6 Location : properties Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::properties → KILLED
|
144 |
|
1.1 Location : build Killed by : none negated conditional → NO_COVERAGE 2.2 Location : build Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest) negated conditional → KILLED 3.3 Location : build Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overridePropertiesWithEmptyProps(oghamjavamail.it.builder.OverridePropertiesTest) negated conditional → KILLED 4.4 Location : build Killed by : oghamspringbootv1autoconfigure.it.SpringBeanResolutionTest.missingBeanErrorUsingThymeleaf(oghamspringbootv1autoconfigure.it.SpringBeanResolutionTest) negated conditional → KILLED 5.5 Location : build Killed by : oghamspringbootv2autoconfigure.it.StaticMethodAccessTest.emailUsingFreemarkerTemplateAndStaticMethodAccessDisabledShouldFail(oghamspringbootv2autoconfigure.it.StaticMethodAccessTest) negated conditional → KILLED 6.6 Location : build Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) negated conditional → KILLED 7.7 Location : build Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec negated conditional → KILLED 8.8 Location : build Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec negated conditional → KILLED
|
145 |
|
1.1 Location : build Killed by : oghamspringbootv2autoconfigure.it.SpringWebBeanResolutionTest.smsUsingThymeleafTemplateShouldResolveBeansAndUrls(oghamspringbootv2autoconfigure.it.SpringWebBeanResolutionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED 2.2 Location : build Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → NO_COVERAGE 3.3 Location : build Killed by : oghamspringbootv1autoconfigure.it.SpringWebBeanResolutionTest.smsUsingThymeleafTemplateShouldResolveBeansAndUrls(oghamspringbootv1autoconfigure.it.SpringWebBeanResolutionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
|
149 |
|
1.1 Location : build Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED 2.2 Location : build Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → NO_COVERAGE 3.3 Location : build Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED 4.4 Location : build Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED 5.5 Location : build Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED 6.6 Location : build Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overridePropertiesWithEmptyProps(oghamjavamail.it.builder.OverridePropertiesTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::build → KILLED
|
153 |
|
1.1 Location : buildConverter Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec negated conditional → KILLED 2.2 Location : buildConverter Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest) negated conditional → KILLED 3.3 Location : buildConverter Killed by : none negated conditional → NO_COVERAGE 4.4 Location : buildConverter Killed by : oghamjavamail.it.builder.OverridePropertiesTest.noOverrideWithEmptyProps(oghamjavamail.it.builder.OverridePropertiesTest) negated conditional → KILLED 5.5 Location : buildConverter Killed by : none negated conditional → SURVIVED
|
154 |
|
1.1 Location : buildConverter Killed by : oghamcore.it.core.convert.CustomConverterTest.asDeveloperIUseMyCustomConverter(oghamcore.it.core.convert.CustomConverterTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED 2.2 Location : buildConverter Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED 3.3 Location : buildConverter Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED 4.4 Location : buildConverter Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → NO_COVERAGE 5.5 Location : buildConverter Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED 6.6 Location : buildConverter Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.oghamPropertyShouldOverride(oghamjavamail.it.builder.JavaMailCustomConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED
|
156 |
|
1.1 Location : buildConverter Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overrideProperties(oghamjavamail.it.builder.OverridePropertiesTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED 2.2 Location : buildConverter Killed by : oghamall.it.configuration.EmptyBuilderTest.manualJavaMailConfigurationCanSendEmail(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED 3.3 Location : buildConverter Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → KILLED 4.4 Location : buildConverter Killed by : none replaced return value with null for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildConverter → NO_COVERAGE
|
163 |
|
1.1 Location : buildProperties Killed by : none removed call to java/util/Collections::sort → SURVIVED 2.2 Location : buildProperties Killed by : oghamall.it.env.PropertyOverrideTest.externalThenPropertiesInCodeThenFile(oghamall.it.env.PropertyOverrideTest) removed call to java/util/Collections::sort → KILLED 3.3 Location : buildProperties Killed by : none removed call to java/util/Collections::sort → NO_COVERAGE
|
169 |
|
1.1 Location : buildProperties Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED 2.2 Location : buildProperties Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overrideProperties(oghamjavamail.it.builder.OverridePropertiesTest) replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED 3.3 Location : buildProperties Killed by : none replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → NO_COVERAGE 4.4 Location : buildProperties Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED 5.5 Location : buildProperties Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest) replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED 6.6 Location : buildProperties Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with Collections.emptyList for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder::buildProperties → KILLED
|
176 |
|
1.1 Location : compare Killed by : none negated conditional → SURVIVED 2.2 Location : compare Killed by : none negated conditional → NO_COVERAGE 3.3 Location : compare Killed by : oghamall.it.env.PropertyOverrideTest.externalThenPropertiesInCodeThenFile(oghamall.it.env.PropertyOverrideTest) negated conditional → KILLED
|
177 |
|
1.1 Location : compare Killed by : none changed conditional boundary → SURVIVED 2.2 Location : compare Killed by : none changed conditional boundary → NO_COVERAGE 3.3 Location : compare Killed by : none negated conditional → NO_COVERAGE 4.4 Location : compare Killed by : none negated conditional → SURVIVED 5.5 Location : compare Killed by : none replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → NO_COVERAGE 6.6 Location : compare Killed by : none replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → SURVIVED
|
179 |
|
1.1 Location : compare Killed by : none changed conditional boundary → SURVIVED 2.2 Location : compare Killed by : none changed conditional boundary → NO_COVERAGE 3.3 Location : compare Killed by : none negated conditional → NO_COVERAGE 4.4 Location : compare Killed by : oghamall.it.env.PropertyOverrideTest.externalThenPropertiesInCodeThenFile(oghamall.it.env.PropertyOverrideTest) negated conditional → KILLED 5.5 Location : compare Killed by : none negated conditional → SURVIVED 6.6 Location : compare Killed by : none replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → SURVIVED 7.7 Location : compare Killed by : oghamall.it.env.PropertyOverrideTest.externalThenPropertiesInCodeThenFile(oghamall.it.env.PropertyOverrideTest) replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → KILLED 8.8 Location : compare Killed by : none replaced int return with 0 for fr/sii/ogham/core/builder/env/SimpleEnvironmentBuilder$PriorityComparator::compare → NO_COVERAGE
|