TestWorkflowRun class

Namespace: Microsoft.Azure.Workflows.UnitTesting.Definitions

This class represents the run from a Standard logic app workflow execution for testing purposes. The class includes properties from the workflow run and contains all the data related to that workflow run, including trigger details, action results, outputs, and variables.

Properties

Name Description Type Required
StartTime The start time of workflow run DateTime? No
EndTime The end time of the workflow run DateTime? No
Status The status of the workflow run TestWorkflowStatus No
Error The workflow run error TestErrorInfo No
Trigger The fired trigger for the workflow run TestWorkflowRunTriggerResult No
Actions The actions in the workflow run Dictionary<string, TestWorkflowRunActionResult> No
Outputs The outputs from the workflow run Dictionary<string, TestWorkflowOutputParameter> No
Variables The values from the workflow run variables Dictionary<string, JToken> No