
com.testingsyndicate.jupiter.extensions.resources.TestResourceDirectory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jupiter-resources-extension Show documentation
Show all versions of jupiter-resources-extension Show documentation
Easily inject file based resources into your jupiter tests
The newest version!
package com.testingsyndicate.jupiter.extensions.resources;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Specifies a default directory from which to load test resources */
@Retention(RetentionPolicy.RUNTIME)
@Target({
ElementType.TYPE,
ElementType.PARAMETER,
ElementType.METHOD,
ElementType.FIELD,
ElementType.PACKAGE
})
public @interface TestResourceDirectory {
/** Directory name to set as the default */
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy