(t *testing.T, cli command.Cli, name ...string)
| 10 | ) |
| 11 | |
| 12 | func createTestContexts(t *testing.T, cli command.Cli, name ...string) { |
| 13 | t.Helper() |
| 14 | for _, n := range name { |
| 15 | createTestContext(t, cli, n, nil) |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | func createTestContext(t *testing.T, cli command.Cli, name string, metaData map[string]any) { |
| 20 | t.Helper() |
no test coverage detected
searching dependent graphs…