(t *testing.T, cli *test.FakeCli, n string)
| 146 | } |
| 147 | |
| 148 | func assertContextCreateLogging(t *testing.T, cli *test.FakeCli, n string) { |
| 149 | t.Helper() |
| 150 | assert.Equal(t, n+"\n", cli.OutBuffer().String()) |
| 151 | assert.Equal(t, fmt.Sprintf("Successfully created context %q\n", n), cli.ErrBuffer().String()) |
| 152 | } |
| 153 | |
| 154 | func TestCreateOrchestratorEmpty(t *testing.T) { |
| 155 | cli := makeFakeCli(t) |
no test coverage detected
searching dependent graphs…