()
| 115 | } |
| 116 | |
| 117 | func getExampleTestCases() []TestCase { |
| 118 | tests := []TestCase{ |
| 119 | { |
| 120 | Command: CommandUnderTest{ |
| 121 | Cmd: "echo hello", |
| 122 | Timeout: "5s", |
| 123 | }, |
| 124 | Expected: Expected{ |
| 125 | Stdout: ExpectedOut{ |
| 126 | Exactly: "hello", |
| 127 | }, |
| 128 | ExitCode: 0, |
| 129 | }, |
| 130 | Title: "Output hello", |
| 131 | }, |
| 132 | } |
| 133 | return tests |
| 134 | } |
no outgoing calls
no test coverage detected