Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 |
Related content
- ActionMock Class Definition
- TriggerMock Class Definition
- TestActionExecutionContext Class Definition
- TestExecutionContext Class Definition
- TestIterationItem Class Definition
- TestErrorInfo Class Definition
- TestErrorResponseAdditionalInfo Class Definition
- TestWorkflowOutputParameter Class Definition
- TestWorkflowRunActionRepetitionResult Class Definition
- TestWorkflowRunActionResult Class Definition
- TestWorkflowRunTriggerResult Class Definition
- TestWorkflowStatus Enum Definition
- UnitTestExecutor Class Definition