Annotation Interface FPTest
FPTest is a custom annotation designed to be used on methods for marking them as test cases.
It helps to identify methods that should be treated as test cases in the testing framework.
The annotation's attributes allow for providing a human-readable test name and an optional flag to skip the test.
-
Required Element Summary
Required Elements -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionbooleanIndicates whether the annotated test case should be skipped during test execution.
-
Element Details
-
name
String nameSpecifies the name of the test case. This name is used to identify the test case in reports, logs, and other contexts where the test case is referenced.- Returns:
- the name of the test case
-
-
-
skip
boolean skipIndicates whether the annotated test case should be skipped during test execution.- Returns:
- true if the test case should be skipped, false otherwise
- Default:
- false
-