MCPcopy Create free account
hub / github.com/UiPath/uipathcli / newTestRunStatusDone

Function newTestRunStatusDone

plugin/studio/testrun/test_run_status.go:32–34  ·  view source on GitHub ↗
(executionId int, folderId int, totalTests int, testSet *api.TestSet, result *api.TestExecution)

Source from the content-addressed store, hash-verified

30}
31
32func newTestRunStatusDone(executionId int, folderId int, totalTests int, testSet *api.TestSet, result *api.TestExecution) *testRunStatus {
33 return &testRunStatus{executionId, TestRunStatusDone, folderId, totalTests, totalTests, testSet, result, nil}
34}
35
36func newTestRunStatusError(executionId int, err error) *testRunStatus {
37 return &testRunStatus{executionId, TestRunStatusError, -1, 0, 0, nil, nil, err}

Callers 1

executeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected