Uses of Class
org.junit.platform.engine.support.hierarchical.ThrowableCollector
-
Packages that use ThrowableCollector Package Description org.junit.jupiter.engine.descriptor Test descriptors used within the JUnit Jupiter test engine.org.junit.jupiter.engine.execution Internal classes for test execution within the JUnit Jupiter test engine.org.junit.jupiter.engine.support Internal support classes for the JUnit Jupiter test engine.org.junit.platform.engine.support.hierarchical Support classes and base implementation for anyTestEngine
that wishes to organize test suites hierarchically based on theNode
abstraction. -
-
Uses of ThrowableCollector in org.junit.jupiter.engine.descriptor
Fields in org.junit.jupiter.engine.descriptor declared as ThrowableCollector Modifier and Type Field Description private ThrowableCollector
ClassExtensionContext. throwableCollector
private ThrowableCollector
MethodExtensionContext. throwableCollector
Constructors in org.junit.jupiter.engine.descriptor with parameters of type ThrowableCollector Constructor Description ClassExtensionContext(ExtensionContext parent, EngineExecutionListener engineExecutionListener, ClassBasedTestDescriptor testDescriptor, TestInstance.Lifecycle lifecycle, JupiterConfiguration configuration, ThrowableCollector throwableCollector, ExecutableInvoker executableInvoker)
ClassExtensionContext(ExtensionContext parent, EngineExecutionListener engineExecutionListener, ClassBasedTestDescriptor testDescriptor, JupiterConfiguration configuration, ThrowableCollector throwableCollector, ExecutableInvoker executableInvoker)
Create a newClassExtensionContext
withTestInstance.Lifecycle.PER_METHOD
.MethodExtensionContext(ExtensionContext parent, EngineExecutionListener engineExecutionListener, TestMethodTestDescriptor testDescriptor, JupiterConfiguration configuration, ThrowableCollector throwableCollector, ExecutableInvoker executableInvoker)
-
Uses of ThrowableCollector in org.junit.jupiter.engine.execution
Fields in org.junit.jupiter.engine.execution declared as ThrowableCollector Modifier and Type Field Description (package private) ThrowableCollector
JupiterEngineExecutionContext.State. throwableCollector
Methods in org.junit.jupiter.engine.execution that return ThrowableCollector Modifier and Type Method Description ThrowableCollector
JupiterEngineExecutionContext. getThrowableCollector()
Methods in org.junit.jupiter.engine.execution with parameters of type ThrowableCollector Modifier and Type Method Description TestInstances
TestInstancesProvider. getTestInstances(ExtensionRegistry extensionRegistry, ExtensionRegistrar extensionRegistrar, ThrowableCollector throwableCollector)
default TestInstances
TestInstancesProvider. getTestInstances(MutableExtensionRegistry extensionRegistry, ThrowableCollector throwableCollector)
JupiterEngineExecutionContext.Builder
JupiterEngineExecutionContext.Builder. withThrowableCollector(ThrowableCollector throwableCollector)
-
Uses of ThrowableCollector in org.junit.jupiter.engine.support
Subclasses of ThrowableCollector in org.junit.jupiter.engine.support Modifier and Type Class Description (package private) class
OpenTest4JAndJUnit4AwareThrowableCollector
Specialization ofThrowableCollector
that treats instances of the OTA'sTestAbortedException
and JUnit 4'sorg.junit.AssumptionViolatedException
as aborting.Methods in org.junit.jupiter.engine.support that return ThrowableCollector Modifier and Type Method Description static ThrowableCollector
JupiterThrowableCollectorFactory. createThrowableCollector()
Create a newThrowableCollector
that treats instances of the OTA'sTestAbortedException
and JUnit 4'sorg.junit.AssumptionViolatedException
as aborting. -
Uses of ThrowableCollector in org.junit.platform.engine.support.hierarchical
Subclasses of ThrowableCollector in org.junit.platform.engine.support.hierarchical Modifier and Type Class Description class
OpenTest4JAwareThrowableCollector
Specialization ofThrowableCollector
that treats instances ofTestAbortedException
as aborting.Fields in org.junit.platform.engine.support.hierarchical declared as ThrowableCollector Modifier and Type Field Description private ThrowableCollector
NodeTestTask. throwableCollector
Methods in org.junit.platform.engine.support.hierarchical that return ThrowableCollector Modifier and Type Method Description ThrowableCollector
ThrowableCollector.Factory. create()
Create a new instance of aThrowableCollector
.
-