Click or drag to resize

ITestApiIsActivityCompleted Method

Evaluate whether the activity is completed or not
Example
C#
var testApi = ctx.Use<ITestApi>();
testApi.IsActivityCompleted("workflowName", "activityName")

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
bool IsActivityCompleted(
	string workflowName,
	string activityName
)

Parameters

workflowName  String
Workflow Name
activityName  String
Activity Name

Return Value

Boolean
Return true if the Activity is completed, otherwise, return false
See Also