(t *testing.T)
| 6 | ) |
| 7 | |
| 8 | func testCommandArgs(t *testing.T) []string { |
| 9 | cqDir := t.TempDir() |
| 10 | logFileName := path.Join(cqDir, "cloudquery.log") |
| 11 | t.Cleanup(func() { |
| 12 | CloseLogFile() |
| 13 | }) |
| 14 | |
| 15 | return []string{"--cq-dir", cqDir, "--log-file-name", logFileName} |
| 16 | } |
no test coverage detected