Package io.quarkus.test.junit.launcher
Interface ArtifactLauncherProvider
-
- All Known Implementing Classes:
DockerContainerLauncherProvider,JarLauncherProvider,NativeImageLauncherProvider
public interface ArtifactLauncherProvider
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceArtifactLauncherProvider.CreateContext
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArtifactLauncher<? extends ArtifactLauncher.InitContext>create(ArtifactLauncherProvider.CreateContext context)Returns an instance ofArtifactLauncheron which theinitmethod has been calledbooleansupportsArtifactType(String type)Determines whether this provider support the artifact type
-
-
-
Method Detail
-
supportsArtifactType
boolean supportsArtifactType(String type)
Determines whether this provider support the artifact type
-
create
ArtifactLauncher<? extends ArtifactLauncher.InitContext> create(ArtifactLauncherProvider.CreateContext context)
Returns an instance ofArtifactLauncheron which theinitmethod has been called
-
-