assertionStrategy property
The type of assertion to perform.
Optional. Possible string values are:
- "ASSERTION_STRATEGY_UNSPECIFIED" : Unspecified Assertion strategy
- "ASSERT_SUCCESSFUL_EXECUTION" : Test a successful execution
- "ASSERT_FAILED_EXECUTION" : Test a failed execution
- "ASSERT_NO_EXECUTION" : Test that the task was never executed
- "ASSERT_EQUALS" : Test the parameter selected is equal to the expected value
- "ASSERT_NOT_EQUALS" : Test the parameter selected is not equal to the expected value
- "ASSERT_CONTAINS" : Test the parameter selected contains the configured value
- "ASSERT_CONDITION" : Test a specific condition
Implementation
core.String? assertionStrategy;