
com.github.spartatech.testutils.logback.ContainerLogbackRunLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparta-test-utils-junit5 Show documentation
Show all versions of sparta-test-utils-junit5 Show documentation
Utility classes for unit testing. Port for Junit5 Jupiter
The newest version!
package com.github.spartatech.testutils.logback;
import java.lang.annotation.*;
/**
* Annotation that allows repeatable Logback runlevel annotations in a method.
*
* @author Daniel Conde Diehl
*
* History:
* Sep 06, 2021 - Daniel Conde Diehl
*
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface ContainerLogbackRunLevel {
/**
* List of logBackRunLevel to allow repeatable annotation.
*
* @return Array of {@code LogbackRunLevel}
*/
LogbackRunLevel[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy