io.quarkus.test.ProdModeTestResults 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.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