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

io.quarkus.test.LogFile 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.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marker annotation to be used on a {@link java.nio.file.Path} field inside a test
 * to get the log file injected into the test.
 *
 * The Path will field only be set if the application has actually been started with a logfile configured.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface LogFile {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy