go-junit-report_test should fail if no files found

Today, if the testdata directory isn't present, this test trivially passes. This makes it fail when no files are found.
This commit is contained in:
Greg Dennis 2022-08-19 10:55:25 -04:00 committed by GitHub
parent d6bf22343d
commit 39473dc54e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,9 @@ func TestRun(t *testing.T) {
if err != nil { if err != nil {
t.Fatalf("error finding files in testdata: %v", err) t.Fatalf("error finding files in testdata: %v", err)
} }
if len(files) == 0 {
t.Fatalf("no files found in %s", testDataDir)
}
for _, file := range files { for _, file := range files {
if !matchRegex.MatchString(file) { if !matchRegex.MatchString(file) {