(testName string)
| 127 | } |
| 128 | |
| 129 | func findTestApplication(testName string) (*TestApplicationSet, error) { |
| 130 | for _, app := range testApplications { |
| 131 | if app.name == testName { |
| 132 | return &app, nil |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | return nil, fmt.Errorf("cannot find test application named '%s'", testName) |
| 137 | } |
| 138 | |
| 139 | func loadIssue(issue interface{}) error { |
| 140 | data, err := os.ReadFile("./script/mock-issue.json") |
no outgoing calls
no test coverage detected