Package io.quarkus.test.metrics
Class MetricsExtensionBootstrap
- java.lang.Object
-
- io.quarkus.test.metrics.MetricsExtensionBootstrap
-
- All Implemented Interfaces:
ExtensionBootstrap
public class MetricsExtensionBootstrap extends Object implements ExtensionBootstrap
-
-
Constructor Summary
Constructors Constructor Description MetricsExtensionBootstrap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterAll(ScenarioContext context)booleanappliesFor(ScenarioContext context)voidbeforeAll(ScenarioContext context)voidbeforeEach(ScenarioContext context)voidonDisabled(ScenarioContext context, Optional<String> reason)voidonError(ScenarioContext context, Throwable throwable)voidonSuccess(ScenarioContext context)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.quarkus.test.bootstrap.ExtensionBootstrap
afterEach, getParameter, onServiceLaunch, updateServiceContext
-
-
-
-
Method Detail
-
appliesFor
public boolean appliesFor(ScenarioContext context)
- Specified by:
appliesForin interfaceExtensionBootstrap
-
beforeAll
public void beforeAll(ScenarioContext context)
- Specified by:
beforeAllin interfaceExtensionBootstrap
-
beforeEach
public void beforeEach(ScenarioContext context)
- Specified by:
beforeEachin interfaceExtensionBootstrap
-
onSuccess
public void onSuccess(ScenarioContext context)
- Specified by:
onSuccessin interfaceExtensionBootstrap
-
onError
public void onError(ScenarioContext context, Throwable throwable)
- Specified by:
onErrorin interfaceExtensionBootstrap
-
onDisabled
public void onDisabled(ScenarioContext context, Optional<String> reason)
- Specified by:
onDisabledin interfaceExtensionBootstrap
-
afterAll
public void afterAll(ScenarioContext context)
- Specified by:
afterAllin interfaceExtensionBootstrap
-
-