ITest ApiIs Workflow Completed Method
Evaluate whether the workflow is completed or not
Definition
Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
Return true if the Workflow is completed, otherwise, return false
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
C#
bool IsWorkflowCompleted(
string workflowName
)Parameters
- workflowName String
- Workflow Name
Return Value
BooleanReturn true if the Workflow is completed, otherwise, return false
Example
C#
var testApi = ctx.Use<ITestApi>();
testApi.IsWorkflowCompleted("workflowName")