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

io.quarkus.test.ProdModeTestResults 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.nio.file.Path;
import java.util.List;
import java.util.logging.LogRecord;

import io.quarkus.bootstrap.app.ArtifactResult;

public class ProdModeTestResults {

    private final Path buildDir;
    private final Path builtArtifactPath;
    private final List results;
    private final List retainedBuildLogRecords;

    public ProdModeTestResults(Path buildDir, Path builtArtifactPath, List results,
            List retainedBuildLogRecords) {
        this.buildDir = buildDir;
        this.builtArtifactPath = builtArtifactPath;
        this.results = results;
        this.retainedBuildLogRecords = retainedBuildLogRecords;
    }

    public Path getBuildDir() {
        return buildDir;
    }

    public Path getBuiltArtifactPath() {
        return builtArtifactPath;
    }

    public List getResults() {
        return results;
    }

    public List getRetainedBuildLogRecords() {
        return retainedBuildLogRecords;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy