io.quarkus.test.ProdModeTestBuildStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-junit5-internal Show documentation
Show all versions of quarkus-junit5-internal Show documentation
A runner for unit tests, intended for testing Quarkus rather than
for end user consumption.
package io.quarkus.test;
import java.util.Map;
import io.quarkus.builder.BuildStep;
// needs to be in a class of its own in order to avoid java.lang.IncompatibleClassChangeError
public abstract class ProdModeTestBuildStep implements BuildStep {
private final Map testContext;
public ProdModeTestBuildStep(Map testContext) {
this.testContext = testContext;
}
public Map getTestContext() {
return testContext;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy