package chksum import "testing" func TestParseFile(t *testing.T) { testCases := []struct { file string }{ {"testdata/SUM"}, } for _, tc := range testCases { t.Run(tc.file, func(t *testing.T) { ParseFile(tc.file) }) } }