EnvBuilderBasedContext.java

1
package fr.sii.ogham.core.builder.context;
2
3
import java.util.List;
4
import java.util.function.Function;
5
6
import fr.sii.ogham.core.builder.configuration.ConfigurationValueBuilder;
7
import fr.sii.ogham.core.builder.configuration.ConfigurationValueBuilderHelper;
8
import fr.sii.ogham.core.builder.env.EnvironmentBuilder;
9
import fr.sii.ogham.core.builder.registry.Registry;
10
import fr.sii.ogham.core.convert.Converter;
11
import fr.sii.ogham.core.env.PropertyResolver;
12
import fr.sii.ogham.core.util.BuilderUtils;
13
14
/**
15
 * Context that uses a shared {@link EnvironmentBuilder} to evaluate the
16
 * properties. The converter is the same as used by the
17
 * {@link EnvironmentBuilder}.
18
 * 
19
 * <p>
20
 * This implementation delegates registration of instances to the provided
21
 * registry. Any instance may be registered.
22
 * 
23
 * @author Aurélien Baudet
24
 *
25
 */
26
public class EnvBuilderBasedContext implements BuildContext {
27
	private final EnvironmentBuilder<?> environmentBuilder;
28
	private final Registry<Object> registry;
29
30
	public EnvBuilderBasedContext(EnvironmentBuilder<?> environmentBuilder, Registry<Object> registry) {
31
		super();
32
		this.environmentBuilder = environmentBuilder;
33
		this.registry = registry;
34
	}
35
36
	@Override
37
	public <T> T register(T instance) {
38 4 1. register : removed call to fr/sii/ogham/core/builder/registry/Registry::register → SURVIVED
2. register : removed call to fr/sii/ogham/core/builder/registry/Registry::register → NO_COVERAGE
3. register : removed call to fr/sii/ogham/core/builder/registry/Registry::register → TIMED_OUT
4. register : removed call to fr/sii/ogham/core/builder/registry/Registry::register → KILLED
		registry.register(instance);
39 7 1. register : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → NO_COVERAGE
2. register : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → TIMED_OUT
3. register : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED
4. register : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED
5. register : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED
6. register : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED
7. register : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED
		return instance;
40
	}
41
42
	@Override
43
	public <T> T evaluate(List<String> properties, Class<T> resultClass) {
44 7 1. evaluate : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → NO_COVERAGE
2. evaluate : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → TIMED_OUT
3. evaluate : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED
4. evaluate : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED
5. evaluate : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED
6. evaluate : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED
7. evaluate : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED
		return BuilderUtils.evaluate(properties, getPropertyResolver(), resultClass);
45
	}
46
47
	@Override
48
	public PropertyResolver getPropertyResolver() {
49 7 1. getPropertyResolver : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → NO_COVERAGE
2. getPropertyResolver : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → TIMED_OUT
3. getPropertyResolver : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED
4. getPropertyResolver : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED
5. getPropertyResolver : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED
6. getPropertyResolver : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED
7. getPropertyResolver : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED
		return environmentBuilder.build();
50
	}
51
52
	@Override
53
	public Converter getConverter() {
54 5 1. getConverter : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → NO_COVERAGE
2. getConverter : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → TIMED_OUT
3. getConverter : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → KILLED
4. getConverter : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → KILLED
5. getConverter : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → KILLED
		return environmentBuilder.converter().build();
55
	}
56
57
	@Override
58
	@SuppressWarnings("unchecked")
59
	public <P, V, T extends ConfigurationValueBuilder<P, V>> T newConfigurationValueBuilder(P parent, Class<V> valueClass) {
60 16 1. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → NO_COVERAGE
2. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → NO_COVERAGE
3. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED
4. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED
5. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED
6. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED
7. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED
8. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED
9. lambda$newConfigurationValueBuilder$0 : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED
10. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
11. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
12. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
13. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
14. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
15. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
16. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
		return newConfigurationValueBuilder(ctx -> (T) new ConfigurationValueBuilderHelper<>(parent, valueClass, ctx));
61
	}
62
63
	@Override
64
	public <P, V, T extends ConfigurationValueBuilder<P, V>> T newConfigurationValueBuilder(Function<BuildContext, T> factory) {
65 8 1. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → NO_COVERAGE
2. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
3. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
4. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
5. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
6. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
7. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
8. newConfigurationValueBuilder : replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED
		return factory.apply(this);
66
	}
67
}

Mutations

38

1.1
Location : register
Killed by : none
removed call to fr/sii/ogham/core/builder/registry/Registry::register → SURVIVED

2.2
Location : register
Killed by : none
removed call to fr/sii/ogham/core/builder/registry/Registry::register → TIMED_OUT

3.3
Location : register
Killed by : none
removed call to fr/sii/ogham/core/builder/registry/Registry::register → NO_COVERAGE

4.4
Location : register
Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest)
removed call to fr/sii/ogham/core/builder/registry/Registry::register → KILLED

39

1.1
Location : register
Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED

2.2
Location : register
Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.noHostDefinedShouldFail(oghamjavamail.it.builder.JavaMailCustomConfigurationTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED

3.3
Location : register
Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED

4.4
Location : register
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → TIMED_OUT

5.5
Location : register
Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED

6.6
Location : register
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → NO_COVERAGE

7.7
Location : register
Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::register → KILLED

44

1.1
Location : evaluate
Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED

2.2
Location : evaluate
Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED

3.3
Location : evaluate
Killed by : oghamall.it.configuration.SendGridConfigurationTest.asDeveloperIDefineApiKeyUsingProperties(oghamall.it.configuration.SendGridConfigurationTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED

4.4
Location : evaluate
Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overrideProperties(oghamjavamail.it.builder.OverridePropertiesTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED

5.5
Location : evaluate
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → TIMED_OUT

6.6
Location : evaluate
Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → KILLED

7.7
Location : evaluate
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::evaluate → NO_COVERAGE

49

1.1
Location : getPropertyResolver
Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED

2.2
Location : getPropertyResolver
Killed by : oghamjavamail.it.builder.OverridePropertiesTest.overridePropertiesWithEmptyProps(oghamjavamail.it.builder.OverridePropertiesTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED

3.3
Location : getPropertyResolver
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → TIMED_OUT

4.4
Location : getPropertyResolver
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → NO_COVERAGE

5.5
Location : getPropertyResolver
Killed by : oghamcore.it.core.configuration.ConfigurationLifecycleSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED

6.6
Location : getPropertyResolver
Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED

7.7
Location : getPropertyResolver
Killed by : oghamall.it.configuration.EmptyBuilderTest.emailSenderManuallyRegisteredButUnconfiguredTemplateParsersCantHandleMultiTemplateContent(oghamall.it.configuration.EmptyBuilderTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getPropertyResolver → KILLED

54

1.1
Location : getConverter
Killed by : oghamspringbootv1autoconfigure.it.StaticMethodsAccessTest.emailUsingFreemarkerTemplateShouldBeAbleToCallStaticMethods(oghamspringbootv1autoconfigure.it.StaticMethodsAccessTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → KILLED

2.2
Location : getConverter
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → NO_COVERAGE

3.3
Location : getConverter
Killed by : oghamall.it.email.EmailSMTPAuthenticationTest.authenticated(oghamall.it.email.EmailSMTPAuthenticationTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → KILLED

4.4
Location : getConverter
Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.oghamPropertyShouldOverride(oghamjavamail.it.builder.JavaMailCustomConfigurationTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → KILLED

5.5
Location : getConverter
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::getConverter → TIMED_OUT

60

1.1
Location : lambda$newConfigurationValueBuilder$0
Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED

2.2
Location : lambda$newConfigurationValueBuilder$0
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → NO_COVERAGE

3.3
Location : lambda$newConfigurationValueBuilder$0
Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.noHostDefinedShouldFail(oghamjavamail.it.builder.JavaMailCustomConfigurationTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED

4.4
Location : lambda$newConfigurationValueBuilder$0
Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED

5.5
Location : lambda$newConfigurationValueBuilder$0
Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED

6.6
Location : lambda$newConfigurationValueBuilder$0
Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED

7.7
Location : lambda$newConfigurationValueBuilder$0
Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED

8.8
Location : lambda$newConfigurationValueBuilder$0
Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::lambda$newConfigurationValueBuilder$0 → KILLED

9.9
Location : newConfigurationValueBuilder
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → NO_COVERAGE

10.10
Location : newConfigurationValueBuilder
Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.noHostDefinedShouldFail(oghamjavamail.it.builder.JavaMailCustomConfigurationTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

11.11
Location : newConfigurationValueBuilder
Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

12.12
Location : newConfigurationValueBuilder
Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

13.13
Location : newConfigurationValueBuilder
Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

14.14
Location : newConfigurationValueBuilder
Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

15.15
Location : newConfigurationValueBuilder
Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

16.16
Location : newConfigurationValueBuilder
Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

65

1.1
Location : newConfigurationValueBuilder
Killed by : oghamcloudhopper.it.AutoRetryExtensionTest.smsNotRetriedDueToCloudhopperError(oghamcloudhopper.it.AutoRetryExtensionTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

2.2
Location : newConfigurationValueBuilder
Killed by : oghamall.it.configuration.EmptyBuilderTest.noMimetypeConfigurationCantSendEmail(oghamall.it.configuration.EmptyBuilderTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

3.3
Location : newConfigurationValueBuilder
Killed by : oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests.oghamAloneShouldUseOghamProperties(oghamspringbootv1autoconfigure.it.OghamSpringBoot1JavaMailAutoConfigurationTests)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

4.4
Location : newConfigurationValueBuilder
Killed by : oghamjavamail.it.builder.JavaMailCustomConfigurationTest.noHostDefinedShouldFail(oghamjavamail.it.builder.JavaMailCustomConfigurationTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

5.5
Location : newConfigurationValueBuilder
Killed by : oghamcore.it.core.service.CleanupTest.manualCleanupShouldAutomaticallyCleanTheSenders(oghamcore.it.core.service.CleanupTest)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

6.6
Location : newConfigurationValueBuilder
Killed by : none
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → NO_COVERAGE

7.7
Location : newConfigurationValueBuilder
Killed by : oghamsmsglobal.it.SmsglobalServiceProviderConfigurerSpec
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

8.8
Location : newConfigurationValueBuilder
Killed by : oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests.oghamPropertiesWithSpringPropsShouldUseOghamPropertiesPrecedence(oghamspringbootv2autoconfigure.it.OghamSpringBoot2JavaMailAutoConfigurationTests)
replaced return value with null for fr/sii/ogham/core/builder/context/EnvBuilderBasedContext::newConfigurationValueBuilder → KILLED

Active mutators

Tests examined


Report generated by PIT OGHAM