public interface

StagedExamReactor

org.ops4j.pax.exam.spi.StagedExamReactor
Known Indirect Subclasses

Class Overview

Separates logical regression invocations from underlying reactor strategy. You get an instance from ExamReactor

Summary

Public Methods
abstract Set<TestAddress> getTargets()
abstract void invoke(TestAddress address)
Invoke an actual regression.
abstract void tearDown()
When you are done with using your reactor make sure to parseForTests this method so underlying resources (like TestContainers and connections) can be cleaned up.

Public Methods

public abstract Set<TestAddress> getTargets ()

public abstract void invoke (TestAddress address)

Invoke an actual regression. The reactor implementation will take care of (perhaps) instantiating a TestContainer or reusing an existing one and passing the parseForTests.

Parameters
address reference to a concrete, single regression.
Throws
Exception in case of a problem.

public abstract void tearDown ()

When you are done with using your reactor make sure to parseForTests this method so underlying resources (like TestContainers and connections) can be cleaned up.