All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.test.ProdModeTestBuildStep Maven / Gradle / Ivy

Go to download

A runner for unit tests, intended for testing Quarkus rather than for end user consumption.

There is a newer version: 3.17.5
Show newest version
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