Package io.quarkus.test.common
Interface IntegrationTestStartedNotifier
-
public interface IntegrationTestStartedNotifierInterface than can be implemented to notify the test infrastructure that the produced artifact has started for non HTTP based@QuarkusIntegrationTests. Implementations of this class are loaded via the ServiceLoader mechanism.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceIntegrationTestStartedNotifier.Contextstatic interfaceIntegrationTestStartedNotifier.Result
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegrationTestStartedNotifier.Resultcheck(IntegrationTestStartedNotifier.Context context)This method is called periodically by Quarkus to determine whether or not the application has started.
-
-
-
Method Detail
-
check
IntegrationTestStartedNotifier.Result check(IntegrationTestStartedNotifier.Context context)
This method is called periodically by Quarkus to determine whether or not the application has started. Quarkus will go through all the implementation ofIntegrationTestStartedNotifierand call this method, returning the first one that indicates a successful start, orIntegrationTestStartedNotifier.Result.NotStartedotherwise
-
-