(t *testing.T)
| 450 | } |
| 451 | |
| 452 | func TestGetCommitDartFiles_InvalidPath(t *testing.T) { |
| 453 | _, err := GetCommitDartFiles("/nonexistent/path", "HEAD") |
| 454 | |
| 455 | assert.Error(t, err) |
| 456 | assert.Contains(t, err.Error(), "does not exist") |
| 457 | } |
| 458 | |
| 459 | // Tests for GetFileContentFromCommit |
| 460 |
nothing calls this directly
no test coverage detected