1
|
|
package fr.sii.ogham.core.builder.configuration; |
2
|
|
|
3
|
|
import static fr.sii.ogham.core.util.BuilderUtils.isExpression; |
4
|
|
import static java.util.Optional.empty; |
5
|
|
|
6
|
|
import java.util.ArrayList; |
7
|
|
import java.util.List; |
8
|
|
import java.util.Optional; |
9
|
|
|
10
|
|
import fr.sii.ogham.core.builder.configurer.Configurer; |
11
|
|
import fr.sii.ogham.core.builder.context.BuildContext; |
12
|
|
import fr.sii.ogham.core.fluent.AbstractParent; |
13
|
|
|
14
|
|
/** |
15
|
|
* Helper that allow registration of properties and default value but also |
16
|
|
* registers the value set by the developer. |
17
|
|
* |
18
|
|
* <p> |
19
|
|
* If a value is explicitly set by developer, it means that the value is |
20
|
|
* hard-coded in its own code. This value can't be overridden by a property or |
21
|
|
* default value so the developer value always takes precedence. |
22
|
|
* |
23
|
|
* For example, Ogham could be configured like this: |
24
|
|
* |
25
|
|
* <pre> |
26
|
|
* .port() |
27
|
|
* .properties("mail.smtp.port", "mail.port") |
28
|
|
* .devaultValue(25) |
29
|
|
* </pre> |
30
|
|
* |
31
|
|
* The developer can configure Ogham using a configuration file in the classpath |
32
|
|
* to provide values for local development environment. Example of content of |
33
|
|
* the configuration file: |
34
|
|
* |
35
|
|
* <pre> |
36
|
|
* mail.smtp.port = 557 |
37
|
|
* </pre> |
38
|
|
* |
39
|
|
* The developer may want to test its code and may need to have a different port |
40
|
|
* value in test: |
41
|
|
* |
42
|
|
* <pre> |
43
|
|
* @Test |
44
|
|
* public void testMail() { |
45
|
|
* MessagingBuilder builder = MessagingBuilder.standard(); |
46
|
|
* builder |
47
|
|
* .email().sender(JavaMailBuilder.class) |
48
|
|
* .port(10025) |
49
|
|
* ... |
50
|
|
* </pre> |
51
|
|
* |
52
|
|
* The value {@code 10025} must be the value available in the test regardless of |
53
|
|
* the value of the properties and default value. |
54
|
|
* |
55
|
|
* <p> |
56
|
|
* <strong>NOTE:</strong> This class is for internal use (or extensions for |
57
|
|
* Ogham). The developer that uses Ogham should not see |
58
|
|
* {@link #setValue(Object)} and {@link #getValue()} methods. |
59
|
|
* |
60
|
|
* |
61
|
|
* @author Aurélien Baudet |
62
|
|
* |
63
|
|
* @param <P> |
64
|
|
* the type of the parent |
65
|
|
* @param <V> |
66
|
|
* the type of the value |
67
|
|
*/ |
68
|
|
public class ConfigurationValueBuilderHelper<P, V> extends AbstractParent<P> implements ConfigurationValueBuilder<P, V> { |
69
|
|
private final Class<V> valueClass; |
70
|
|
private final BuildContext buildContext; |
71
|
|
private final List<String> properties; |
72
|
|
private V defaultValue; |
73
|
|
private V value; |
74
|
|
private Optional<V> optionalValue; |
75
|
|
|
76
|
|
/** |
77
|
|
* Initializes with the parent builder and the type of the value used for |
78
|
|
* conversion. |
79
|
|
* |
80
|
|
* @param parent |
81
|
|
* the parent builder |
82
|
|
* @param valueClass |
83
|
|
* the type of the value |
84
|
|
* @param buildContext |
85
|
|
* for registering instances and property evaluation |
86
|
|
*/ |
87
|
|
public ConfigurationValueBuilderHelper(P parent, Class<V> valueClass, BuildContext buildContext) { |
88
|
|
super(parent); |
89
|
|
this.valueClass = valueClass; |
90
|
|
this.buildContext = buildContext; |
91
|
|
properties = new ArrayList<>(); |
92
|
|
optionalValue = empty(); |
93
|
|
} |
94
|
|
|
95
|
|
@Override |
96
|
|
public ConfigurationValueBuilderHelper<P, V> properties(String... properties) { |
97
|
|
for (String property : properties) { |
98
|
8
1. properties : negated conditional → NO_COVERAGE
2. properties : negated conditional → KILLED
3. properties : negated conditional → KILLED
4. properties : negated conditional → KILLED
5. properties : negated conditional → KILLED
6. properties : negated conditional → KILLED
7. properties : negated conditional → KILLED
8. properties : negated conditional → KILLED
|
if (!isExpression(property)) { |
99
|
|
property = "${" + property + "}"; |
100
|
|
} |
101
|
|
this.properties.add(property); |
102
|
|
} |
103
|
8
1. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → NO_COVERAGE
2. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
3. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
4. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
5. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
6. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
7. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
8. properties : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
|
return this; |
104
|
|
} |
105
|
|
|
106
|
|
@Override |
107
|
|
public ConfigurationValueBuilderHelper<P, V> defaultValue(V value) { |
108
|
|
defaultValue = value; |
109
|
4
1. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → SURVIVED
2. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → NO_COVERAGE
3. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
4. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
|
return this; |
110
|
|
} |
111
|
|
|
112
|
|
@Override |
113
|
|
public ConfigurationValueBuilderHelper<P, V> defaultValue(MayOverride<V> possibleNewValue) { |
114
|
|
defaultValue = possibleNewValue.override(defaultValue); |
115
|
8
1. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → NO_COVERAGE
2. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
3. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
4. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
5. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
6. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
7. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
8. defaultValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
|
return this; |
116
|
|
} |
117
|
|
|
118
|
|
@Override |
119
|
|
@SuppressWarnings("squid:S3553") |
120
|
|
public ConfigurationValueBuilderHelper<P, V> value(Optional<V> optionalValue) { |
121
|
3
1. value : negated conditional → NO_COVERAGE
2. value : negated conditional → KILLED
3. value : negated conditional → KILLED
|
if (optionalValue.isPresent()) { |
122
|
|
this.optionalValue = optionalValue; |
123
|
|
} |
124
|
3
1. value : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::value → NO_COVERAGE
2. value : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::value → KILLED
3. value : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::value → KILLED
|
return this; |
125
|
|
} |
126
|
|
|
127
|
|
/** |
128
|
|
* If a value is explicitly set by developer, it means that the value is |
129
|
|
* hard-coded in its own code. This value can't be overridden by a property |
130
|
|
* or default value so the developer value always takes precedence. |
131
|
|
* |
132
|
|
* For example, Ogham could be configured like this: |
133
|
|
* |
134
|
|
* <pre> |
135
|
|
* .port() |
136
|
|
* .properties("mail.smtp.port", "mail.port") |
137
|
|
* .devaultValue(25) |
138
|
|
* </pre> |
139
|
|
* |
140
|
|
* The developer can configure Ogham using a configuration file in the |
141
|
|
* classpath to provide values for local development environment. Example of |
142
|
|
* content of the configuration file: |
143
|
|
* |
144
|
|
* <pre> |
145
|
|
* mail.smtp.port = 557 |
146
|
|
* </pre> |
147
|
|
* |
148
|
|
* The developer may want to test its code and may need to have a different |
149
|
|
* port value in test: |
150
|
|
* |
151
|
|
* <pre> |
152
|
|
* @Test |
153
|
|
* public void testMail() { |
154
|
|
* MessagingBuilder builder = MessagingBuilder.standard(); |
155
|
|
* builder |
156
|
|
* .email().sender(JavaMailBuilder.class) |
157
|
|
* .port(10025) |
158
|
|
* ... |
159
|
|
* </pre> |
160
|
|
* |
161
|
|
* The value {@code 10025} must be the value available in the test |
162
|
|
* regardless of the value of the properties and default value. |
163
|
|
* |
164
|
|
* <p> |
165
|
|
* <strong>IMPORTANT:</strong> {@link Configurer}s <strong>should |
166
|
|
* not</strong> use this method directly because it prevents the possibility |
167
|
|
* to override the value from external configuration. |
168
|
|
* |
169
|
|
* @param value |
170
|
|
* the value set by the developer in its own code |
171
|
|
*/ |
172
|
|
public void setValue(V value) { |
173
|
|
this.value = value; |
174
|
|
} |
175
|
|
|
176
|
|
/** |
177
|
|
* Get the final value. The first non-null value is returned: |
178
|
|
* |
179
|
|
* <ol> |
180
|
|
* <li>If the a non-null value has been set using {@link #setValue(Object)}, |
181
|
|
* this value is returned</li> |
182
|
|
* <li>If an optional value has been set using {@link #value(Optional)}, and |
183
|
|
* {@link Optional#isPresent()} returns true this value is returned</li> |
184
|
|
* <li>If property keys have been registered and one has been evaluated to a |
185
|
|
* non-null value, this value is returned</li> |
186
|
|
* <li>If a default value has been registered, the default value is |
187
|
|
* returned</li> |
188
|
|
* <li>null is returned</li> |
189
|
|
* </ol> |
190
|
|
* |
191
|
|
* @return the value |
192
|
|
*/ |
193
|
|
public V getValue() { |
194
|
10
1. getValue : negated conditional → TIMED_OUT
2. getValue : negated conditional → KILLED
3. getValue : negated conditional → KILLED
4. getValue : negated conditional → KILLED
5. getValue : negated conditional → KILLED
6. getValue : negated conditional → KILLED
7. getValue : negated conditional → KILLED
8. getValue : negated conditional → KILLED
9. getValue : negated conditional → KILLED
10. getValue : negated conditional → KILLED
|
if (value != null) { |
195
|
11
1. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
2. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
3. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
4. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
5. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
6. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
7. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
8. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
9. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
10. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
11. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
return value; |
196
|
|
} |
197
|
10
1. getValue : negated conditional → TIMED_OUT
2. getValue : negated conditional → KILLED
3. getValue : negated conditional → KILLED
4. getValue : negated conditional → KILLED
5. getValue : negated conditional → KILLED
6. getValue : negated conditional → KILLED
7. getValue : negated conditional → KILLED
8. getValue : negated conditional → KILLED
9. getValue : negated conditional → KILLED
10. getValue : negated conditional → KILLED
|
if (optionalValue.isPresent()) { |
198
|
2
1. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → NO_COVERAGE
2. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → TIMED_OUT
|
return optionalValue.get(); |
199
|
|
} |
200
|
|
V prop = buildContext.evaluate(properties, valueClass); |
201
|
7
1. getValue : negated conditional → SURVIVED
2. getValue : negated conditional → TIMED_OUT
3. getValue : negated conditional → KILLED
4. getValue : negated conditional → KILLED
5. getValue : negated conditional → KILLED
6. getValue : negated conditional → KILLED
7. getValue : negated conditional → KILLED
|
if (prop != null) { |
202
|
7
1. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → NO_COVERAGE
2. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → SURVIVED
3. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
4. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
5. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
6. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
7. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
return prop; |
203
|
|
} |
204
|
6
1. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → SURVIVED
2. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → TIMED_OUT
3. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
4. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
5. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
6. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
return defaultValue; |
205
|
|
} |
206
|
|
|
207
|
|
/** |
208
|
|
* Get the final value. The first non-null value is returned: |
209
|
|
* |
210
|
|
* <ol> |
211
|
|
* <li>If the a non-null value has been set using {@link #setValue(Object)}, |
212
|
|
* this value is returned</li> |
213
|
|
* <li>If an optional value has been set using {@link #value(Optional)}, and |
214
|
|
* {@link Optional#isPresent()} returns true this value is returned</li> |
215
|
|
* <li>If property keys have been registered and one has been evaluated to a |
216
|
|
* non-null value, this value is returned</li> |
217
|
|
* <li>If a default value has been registered, the default value is |
218
|
|
* returned</li> |
219
|
|
* <li>The default value provided as parameter is used</li> |
220
|
|
* </ol> |
221
|
|
* |
222
|
|
* @param defaultValue |
223
|
|
* the default value to use if there isn't a non-null value |
224
|
|
* @return the value |
225
|
|
*/ |
226
|
|
public V getValue(V defaultValue) { |
227
|
|
V configuredValue = getValue(); |
228
|
10
1. getValue : negated conditional → TIMED_OUT
2. getValue : negated conditional → KILLED
3. getValue : negated conditional → KILLED
4. getValue : negated conditional → KILLED
5. getValue : negated conditional → KILLED
6. getValue : negated conditional → KILLED
7. getValue : negated conditional → KILLED
8. getValue : negated conditional → KILLED
9. getValue : negated conditional → KILLED
10. getValue : negated conditional → KILLED
|
if (configuredValue != null) { |
229
|
10
1. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → TIMED_OUT
2. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
3. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
4. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
5. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
6. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
7. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
8. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
9. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
10. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
return configuredValue; |
230
|
|
} |
231
|
11
1. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → SURVIVED
2. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → NO_COVERAGE
3. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
4. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
5. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
6. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
7. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
8. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
9. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
10. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
11. getValue : replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
return defaultValue; |
232
|
|
} |
233
|
|
|
234
|
|
/** |
235
|
|
* Returns true if a value, default value or properties have been set. |
236
|
|
* |
237
|
|
* @return true if there is a value, default value or at least one property |
238
|
|
*/ |
239
|
|
public boolean hasValueOrProperties() { |
240
|
4
1. hasValueOrProperties : replaced boolean return with true for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::hasValueOrProperties → NO_COVERAGE
2. hasValueOrProperties : negated conditional → NO_COVERAGE
3. hasValueOrProperties : negated conditional → NO_COVERAGE
4. hasValueOrProperties : negated conditional → NO_COVERAGE
|
return value != null || !properties.isEmpty() || defaultValue != null; |
241
|
|
} |
242
|
|
|
243
|
|
} |
| | Mutations |
98 |
|
1.1 Location : properties Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec negated conditional → KILLED 2.2 Location : properties Killed by : oghamall.it.configuration.SendGridConfigurationTest.asDeveloperIDefineApiKeyUsingProperties(oghamall.it.configuration.SendGridConfigurationTest) negated conditional → KILLED 3.3 Location : properties Killed by : none negated conditional → NO_COVERAGE 4.4 Location : properties Killed by : oghamspringbootv1autoconfigure.it.StaticMethodsAccessTest.emailUsingFreemarkerTemplateShouldBeAbleToCallStaticMethods(oghamspringbootv1autoconfigure.it.StaticMethodsAccessTest) negated conditional → KILLED 5.5 Location : properties Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overrideProperties(oghamjavamail.it.builder.OverridePropertiesTest) negated conditional → KILLED 6.6 Location : properties Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) negated conditional → KILLED 7.7 Location : properties Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec negated conditional → KILLED 8.8 Location : properties Killed by : oghamspringbootv2autoconfigure.it.StaticMethodAccessTest.emailUsingFreemarkerTemplateAndStaticMethodAccessDisabledShouldFail(oghamspringbootv2autoconfigure.it.StaticMethodAccessTest) negated conditional → KILLED
|
103 |
|
1.1 Location : properties Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED 2.2 Location : properties Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED 3.3 Location : properties Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED 4.4 Location : properties Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED 5.5 Location : properties Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED 6.6 Location : properties Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.oghamPropertyShouldOverride(oghamjavamail.it.builder.JavaMailCustomConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED 7.7 Location : properties Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → NO_COVERAGE 8.8 Location : properties Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::properties → KILLED
|
109 |
|
1.1 Location : defaultValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → SURVIVED 2.2 Location : defaultValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → NO_COVERAGE 3.3 Location : defaultValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED 4.4 Location : defaultValue Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.directValueShouldOverride(oghamjavamail.it.builder.JavaMailCustomConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
|
115 |
|
1.1 Location : defaultValue Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED 2.2 Location : defaultValue Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED 3.3 Location : defaultValue Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED 4.4 Location : defaultValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED 5.5 Location : defaultValue Killed by : oghamjavamail.it.UnreadableAttachmentTest.attachmentUnreadable(oghamjavamail.it.UnreadableAttachmentTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED 6.6 Location : defaultValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → NO_COVERAGE 7.7 Location : defaultValue Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED 8.8 Location : defaultValue Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::defaultValue → KILLED
|
121 |
|
1.1 Location : value Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamWithJavaMailAutoConfigShouldUseSpringProperties(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) negated conditional → KILLED 2.2 Location : value Killed by : none negated conditional → NO_COVERAGE 3.3 Location : value Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamWithJavaMailAutoConfigShouldUseSpringProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) negated conditional → KILLED
|
124 |
|
1.1 Location : value Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::value → KILLED 2.2 Location : value Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::value → NO_COVERAGE 3.3 Location : value Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::value → KILLED
|
194 |
|
1.1 Location : getValue Killed by : oghamjavamail.it.builder.OverridePropertiesTest.values(oghamjavamail.it.builder.OverridePropertiesTest) negated conditional → KILLED 2.2 Location : getValue Killed by : none negated conditional → TIMED_OUT 3.3 Location : getValue Killed by : oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest.translateInternational(oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest) negated conditional → KILLED 4.4 Location : getValue Killed by : oghamthymeleafv3.it.ThymeleafDetectorTest.foundWithoutNamespace(oghamthymeleafv3.it.ThymeleafDetectorTest) negated conditional → KILLED 5.5 Location : getValue Killed by : oghamthymeleafv2.it.ThymeleafDetectorTest.found(oghamthymeleafv2.it.ThymeleafDetectorTest) negated conditional → KILLED 6.6 Location : getValue Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec negated conditional → KILLED 7.7 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec negated conditional → KILLED 8.8 Location : getValue Killed by : oghamcloudhopper.it.PartialConfigurationTest.splitterEnabledButAutoGuessNotEnabledAndNoEncodingConfiguredAndLongMessageShouldFailIndicatingThatNoSplitterIsConfigured(oghamcloudhopper.it.PartialConfigurationTest) negated conditional → KILLED 9.9 Location : getValue Killed by : oghamfremarker.it.FreeMarkerParserTest.nested(oghamfremarker.it.FreeMarkerParserTest) negated conditional → KILLED 10.10 Location : getValue Killed by : oghamovh.it.OvhSmsTest.nationalNumber(oghamovh.it.OvhSmsTest) negated conditional → KILLED
|
195 |
|
1.1 Location : getValue Killed by : oghamspringbootv2autoconfigure.it.StaticMethodAccessTest.smsUsingFreemarkerTemplateShouldBeAbleToCallStaticMethodsWithCustomVariableName(oghamspringbootv2autoconfigure.it.StaticMethodAccessTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 2.2 Location : getValue Killed by : oghamfremarker.it.FreeMarkerParserTest.nested(oghamfremarker.it.FreeMarkerParserTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 3.3 Location : getValue Killed by : oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest.translateInternational(oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 4.4 Location : getValue Killed by : oghamspringbootv1autoconfigure.it.StaticMethodsAccessTest.emailUsingFreemarkerTemplateShouldBeAbleToCallStaticMethods(oghamspringbootv1autoconfigure.it.StaticMethodsAccessTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 5.5 Location : getValue Killed by : oghamthymeleafv2.it.ThymeleafDetectorTest.found(oghamthymeleafv2.it.ThymeleafDetectorTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 6.6 Location : getValue Killed by : oghamcloudhopper.it.PartialConfigurationTest.splitterEnabledButAutoGuessNotEnabledAndNoEncodingConfiguredAndLongMessageShouldFailIndicatingThatNoSplitterIsConfigured(oghamcloudhopper.it.PartialConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 7.7 Location : getValue Killed by : oghamjavamail.it.builder.OverridePropertiesTest.values(oghamjavamail.it.builder.OverridePropertiesTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 8.8 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 9.9 Location : getValue Killed by : oghamovh.it.OvhSmsTest.nationalNumber(oghamovh.it.OvhSmsTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 10.10 Location : getValue Killed by : oghamthymeleafv3.it.ThymeleafDetectorTest.foundWithoutNamespace(oghamthymeleafv3.it.ThymeleafDetectorTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 11.11 Location : getValue Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
197 |
|
1.1 Location : getValue Killed by : oghamjavamail.it.builder.OverridePropertiesTest.noOverrideWithEmptyProps(oghamjavamail.it.builder.OverridePropertiesTest) negated conditional → KILLED 2.2 Location : getValue Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec negated conditional → KILLED 3.3 Location : getValue Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest) negated conditional → KILLED 4.4 Location : getValue Killed by : oghamovh.it.OvhSmsTest.nationalNumber(oghamovh.it.OvhSmsTest) negated conditional → KILLED 5.5 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec negated conditional → KILLED 6.6 Location : getValue Killed by : oghamcloudhopper.it.PartialConfigurationTest.splitterEnabledButAutoGuessNotEnabledAndNoEncodingConfiguredAndLongMessageShouldFailIndicatingThatNoSplitterIsConfigured(oghamcloudhopper.it.PartialConfigurationTest) negated conditional → KILLED 7.7 Location : getValue Killed by : none negated conditional → TIMED_OUT 8.8 Location : getValue Killed by : oghamthymeleafv3.it.ThymeleafDetectorTest.notFound(oghamthymeleafv3.it.ThymeleafDetectorTest) negated conditional → KILLED 9.9 Location : getValue Killed by : oghamfremarker.it.FreeMarkerParserTest.nested(oghamfremarker.it.FreeMarkerParserTest) negated conditional → KILLED 10.10 Location : getValue Killed by : oghamthymeleafv2.it.ThymeleafDetectorTest.notFound(oghamthymeleafv2.it.ThymeleafDetectorTest) negated conditional → KILLED
|
198 |
|
1.1 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → NO_COVERAGE 2.2 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → TIMED_OUT
|
201 |
|
1.1 Location : getValue Killed by : none negated conditional → TIMED_OUT 2.2 Location : getValue Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overrideProperties(oghamjavamail.it.builder.OverridePropertiesTest) negated conditional → KILLED 3.3 Location : getValue Killed by : oghamall.it.configuration.SendGridConfigurationTest.asDeveloperIDefineApiKeyUsingProperties(oghamall.it.configuration.SendGridConfigurationTest) negated conditional → KILLED 4.4 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec negated conditional → KILLED 5.5 Location : getValue Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec negated conditional → KILLED 6.6 Location : getValue Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) negated conditional → KILLED 7.7 Location : getValue Killed by : none negated conditional → SURVIVED
|
202 |
|
1.1 Location : getValue Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 2.2 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 3.3 Location : getValue Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overrideProperties(oghamjavamail.it.builder.OverridePropertiesTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 4.4 Location : getValue Killed by : oghamall.it.configuration.SendGridConfigurationTest.asDeveloperIDefineApiKeyUsingProperties(oghamall.it.configuration.SendGridConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 5.5 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → NO_COVERAGE 6.6 Location : getValue Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 7.7 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → SURVIVED
|
204 |
|
1.1 Location : getValue Killed by : oghamall.it.sms.SmsCustomImplTest.simple(oghamall.it.sms.SmsCustomImplTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 2.2 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → SURVIVED 3.3 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 4.4 Location : getValue Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 5.5 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → TIMED_OUT 6.6 Location : getValue Killed by : oghamcloudhopper.it.SendTimeoutTest.sendResponseTimeout(oghamcloudhopper.it.SendTimeoutTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
228 |
|
1.1 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec negated conditional → KILLED 2.2 Location : getValue Killed by : oghamthymeleafv3.it.ThymeleafDetectorTest.notFound(oghamthymeleafv3.it.ThymeleafDetectorTest) negated conditional → KILLED 3.3 Location : getValue Killed by : none negated conditional → TIMED_OUT 4.4 Location : getValue Killed by : oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest.translateInternational(oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest) negated conditional → KILLED 5.5 Location : getValue Killed by : oghamcore.it.core.builder.retry.RetryBuilderSpec negated conditional → KILLED 6.6 Location : getValue Killed by : oghamjavamail.it.JavaMailSmtpTest.missingRecipientIsInvalid(oghamjavamail.it.JavaMailSmtpTest) negated conditional → KILLED 7.7 Location : getValue Killed by : oghamfremarker.it.FreeMarkerParserTest.nested(oghamfremarker.it.FreeMarkerParserTest) negated conditional → KILLED 8.8 Location : getValue Killed by : oghamovh.it.OvhSmsTest.phoneNumberConversion(oghamovh.it.OvhSmsTest) negated conditional → KILLED 9.9 Location : getValue Killed by : oghamcloudhopper.it.PartialConfigurationTest.splitterEnabledButAutoGuessNotEnabledAndNoEncodingConfiguredAndLongMessageShouldFailIndicatingThatNoSplitterIsConfigured(oghamcloudhopper.it.PartialConfigurationTest) negated conditional → KILLED 10.10 Location : getValue Killed by : oghamthymeleafv2.it.ThymeleafDetectorTest.notFound(oghamthymeleafv2.it.ThymeleafDetectorTest) negated conditional → KILLED
|
229 |
|
1.1 Location : getValue Killed by : oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest.translateNull(oghamall.it.sms.message.addressing.translator.ReceiverPhoneNumberTranslatorTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 2.2 Location : getValue Killed by : oghamcore.it.core.builder.retry.RetryBuilderSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 3.3 Location : getValue Killed by : oghamovh.it.OvhSmsTest.nationalNumber(oghamovh.it.OvhSmsTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 4.4 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 5.5 Location : getValue Killed by : oghamcloudhopper.it.PartialConfigurationTest.splitterEnabledButAutoGuessNotEnabledAndNoEncodingConfiguredAndLongMessageShouldFailIndicatingThatNoSplitterIsConfigured(oghamcloudhopper.it.PartialConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 6.6 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → TIMED_OUT 7.7 Location : getValue Killed by : oghamthymeleafv3.it.ThymeleafDetectorTest.notFound(oghamthymeleafv3.it.ThymeleafDetectorTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 8.8 Location : getValue Killed by : oghamjavamail.it.JavaMailSmtpTest.missingRecipientIsInvalid(oghamjavamail.it.JavaMailSmtpTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 9.9 Location : getValue Killed by : oghamfremarker.it.FreeMarkerParserTest.nested(oghamfremarker.it.FreeMarkerParserTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 10.10 Location : getValue Killed by : oghamthymeleafv2.it.ThymeleafDetectorTest.notFound(oghamthymeleafv2.it.ThymeleafDetectorTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
231 |
|
1.1 Location : getValue Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 2.2 Location : getValue Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 3.3 Location : getValue Killed by : oghamcore.it.core.builder.retry.RetryBuilderSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 4.4 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → SURVIVED 5.5 Location : getValue Killed by : oghamthymeleafv3.it.ExternalFileTest.fileUnreadable(oghamthymeleafv3.it.ExternalFileTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 6.6 Location : getValue Killed by : none replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → NO_COVERAGE 7.7 Location : getValue Killed by : oghamall.it.configuration.EmptyBuilderTest.unconfiguredServiceCantSendSms(oghamall.it.configuration.EmptyBuilderTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 8.8 Location : getValue Killed by : oghamthymeleafv2.it.ExternalFileTest.fileNotFound(oghamthymeleafv2.it.ExternalFileTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 9.9 Location : getValue Killed by : oghamjavamail.it.JavaMailSmtpTest.missingRecipientIsInvalid(oghamjavamail.it.JavaMailSmtpTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 10.10 Location : getValue Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED 11.11 Location : getValue Killed by : oghamcloudhopper.it.PartialConfigurationTest.splitterEnabledButAutoGuessNotEnabledAndNoEncodingConfiguredAndLongMessageShouldFailIndicatingThatNoSplitterIsConfigured(oghamcloudhopper.it.PartialConfigurationTest) replaced return value with null for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::getValue → KILLED
|
240 |
|
1.1 Location : hasValueOrProperties Killed by : none replaced boolean return with true for fr/sii/ogham/core/builder/configuration/ConfigurationValueBuilderHelper::hasValueOrProperties → NO_COVERAGE 2.2 Location : hasValueOrProperties Killed by : none negated conditional → NO_COVERAGE 3.3 Location : hasValueOrProperties Killed by : none negated conditional → NO_COVERAGE 4.4 Location : hasValueOrProperties Killed by : none negated conditional → NO_COVERAGE
|