(t *testing.T)
| 20 | } |
| 21 | |
| 22 | func TestIsGitRepository_Invalid(t *testing.T) { |
| 23 | tmpDir := t.TempDir() |
| 24 | // Don't initialize git |
| 25 | |
| 26 | isRepo := isGitRepository(tmpDir) |
| 27 | |
| 28 | assert.False(t, isRepo) |
| 29 | } |
| 30 | |
| 31 | func TestFilterDartFiles(t *testing.T) { |
| 32 | files := []string{ |
nothing calls this directly
no test coverage detected