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

com.testingsyndicate.jupiter.extensions.resources.TestResourceDirectory Maven / Gradle / Ivy

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