...
Configuring the OSGI container
Test driver and reactor strategy
An integration test is just no more than a java class with some particular annotations and methods. First of all, we have to define the driver the test will run with (in our case, JUnit driver), using the @RunWith annotation
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
@RunWith(JUnit4TestRunner.class) @ExamReactorStrategy(AllConfinedStagedReactorFactory.class) public abstract class OSPFIntegrationTest { ... } |