Class ContainerClassRulesFilter
- java.lang.Object
-
- org.jboss.arquillian.junit.container.ContainerClassRulesFilter
-
- All Implemented Interfaces:
JUnitClassRulesFilter
public class ContainerClassRulesFilter extends Object implements JUnitClassRulesFilter
-
-
Constructor Summary
Constructors Constructor Description ContainerClassRulesFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<org.junit.rules.TestRule>filter(List<org.junit.rules.TestRule> scannedRules)No @ClassRule should be executed inside of a container since the state between @Test is not kept there.
-
-
-
Method Detail
-
filter
public List<org.junit.rules.TestRule> filter(List<org.junit.rules.TestRule> scannedRules)
No @ClassRule should be executed inside of a container since the state between @Test is not kept there. This means that particular @ClassRule can be executed multiple times per one test class executed in the container.- Specified by:
filterin interfaceJUnitClassRulesFilter
-
-