
com.nitorcreations.test.yaml.FromYaml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yaml-test-utils Show documentation
Show all versions of yaml-test-utils Show documentation
JUnit rule to load Snakeyaml files as test fixtures
The newest version!
package com.nitorcreations.test.yaml;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marks the test classes field to be populated from the yaml resource given for a certain {@link
* com.nitorcreations.test.yaml.YamlRule}
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface FromYaml {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy