In the previous version, the PipelineRule
only requires the EmbeddedServerRule
as a prerequisite. The PipelineRule
itself creates a test site and application context. This leads to conflicts when you try to combine these test rules with other rules that create an application context as well.
To prevent this, this part of the application context creation is no longer available.
To create a PipelineRule
use this approach:
public final EmbeddedServerRule server = new EmbeddedServerRule(this); private DomainCreatorRule domainCreatorRule = DomainCreatorRule.site().build(this); private PipelineRule pipelineRule = PipelineRule.builder().build(); @Rule public RuleChain ruleChain = RuleChain.outerRule(server).around(domainCreatorRule).around(pipelineRule);
Just add the DomainCreatorRule
to the rule chain.
Note
@ForceApplicationRule
to the test method or test class.The information provided in the Knowledge Base may not be applicable to all systems and situations. Intershop Communications will not be liable to any party for any direct or indirect damages resulting from the use of the Customer Support section of the Intershop Corporate Web site, including, without limitation, any lost profits, business interruption, loss of programs or other data on your information handling system.