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

jio.test.pbt.Command Maven / Gradle / Ivy

Go to download

JIO test library based on Property Based Testing and Java Flight Recording Debuggers

There is a newer version: 3.0.0-RC2
Show newest version
package jio.test.pbt;

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

/**
 * The `@Command` annotation is used to mark fields that represent commands within the Property Console. Fields
 * annotated with `@Command` will be identified as callable commands when using the console.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface Command {


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy