implemented header contains test

This commit is contained in:
2024-01-03 10:19:49 +11:00
parent 499a6df594
commit 7629ed05bd
3 changed files with 52 additions and 4 deletions

View File

@@ -45,11 +45,16 @@ func main() {
// Perform specified test cases
for i := range testDefinitions.TestCases {
RunTest(&testDefinitions.TestCases[i])
success, _ := CheckResults(&testDefinitions.TestCases[i])
success, err := CheckResults(&testDefinitions.TestCases[i])
if err != nil {
fmt.Printf("Error running test case : %s\n", err)
os.Exit(1)
}
if !success {
fmt.Printf("Test result failed\n")
os.Exit(1)
}
}
// For debugging, just dump the output