Merge pull request #142 from greg-dennis/patch-1

go-junit-report_test should fail if no files found
This commit is contained in:
Joël Stemmer 2022-08-19 21:31:31 +01:00 committed by GitHub
commit 35c4d8a827
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) {