qa.justtestlah.testdata.TestData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of justtestlah-core Show documentation
Show all versions of justtestlah-core Show documentation
JustTestLah! is a JAVA test framework targeting projects that support multiple platforms, in particular Web, Android and iOS. It follows a BDD approach and allows testing against all platforms using the same feature files. JustTestLah's main aim is to make the configuration and the actual test code as easy as possible.
package qa.justtestlah.testdata;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotates Java classes representing test data entities.
*
* All annotated classes will be registered with {@link
* qa.justtestlah.testdata.TestDataObjectRegistry}.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface TestData {
/**
* The identifier used in the testdata yaml file. If not specified the (lower camel case) simple
* name of the annotated class will be used.
*
* @return key to identify this test data class
*/
String value() default "";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy