Package net.jqwik.api.lifecycle
Schnittstelle SkipExecutionHook
- Alle Superschnittstellen:
LifecycleHook
- Funktionsschnittstelle:
- Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.
@API(status=MAINTAINED,
since="1.4.0")
@FunctionalInterface
public interface SkipExecutionHook
extends LifecycleHook
Use this hook to determine if an annotated element should be skipped during
a test run or not. Evaluation of hooks is stopped
as soon as a single hook returns SkipExecutionHook.SkipResult.skip(String).
-
Verschachtelte Klassen - Übersicht
-
Feldübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungshouldBeSkipped
(LifecycleContext context) Determine if an annotated element should be skipped or not.Von Schnittstelle geerbte Methoden net.jqwik.api.lifecycle.LifecycleHook
appliesTo, propagateTo
-
Felddetails
-
DO_NOT_SKIP
-
-
Methodendetails
-
shouldBeSkipped
Determine if an annotated element should be skipped or not. In order to decide an implementor can use all information fromcontext
. Use SkipExecutionHook.SkipResult.doNotSkip() or SkipExecutionHook.SkipResult.skip(String) as return value.- Parameter:
context
- An instance of ContainerLifecycleContext or PropertyLifecycleContext- Gibt zurück:
- an instance of SkipExecutionHook.SkipResult
-