
com.tatateo.test.Conditions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-utils Show documentation
Show all versions of test-utils Show documentation
Utility classes for tests
The newest version!
package com.tatateo.test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Specifies a test method's meta information
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Conditions {
/**
* list of test methods that should run before this test method.
*/
String[] dependsOn() default {};
/**
* priority of the test method
*/
int priority() default 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy