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

pl.hiber.testcase.annotations.TestCase Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package pl.hiber.testcase.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Created 2014 by 4ib3r
 * Annotation for mark test case. Marked method is invoked before tests for build test case structure.
 */

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface TestCase {
    /** Custom test case name */
    String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy