com.github.robindevilliers.cascade.annotations.CompletenessLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cascade Show documentation
Show all versions of cascade Show documentation
Cascade is a blackbox testing framework
The newest version!
package com.github.robindevilliers.cascade.annotations;
import com.github.robindevilliers.cascade.Completeness;
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface CompletenessLevel {
Completeness value();
}