merge branch merge-from-video

This commit is contained in:
lilong.129
2024-08-21 14:57:53 +08:00
45 changed files with 2280 additions and 365 deletions

View File

@@ -65,6 +65,10 @@ func LoadTestCases(tests ...ITestCase) ([]*TestCase, error) {
}
}
if len(testCases) < 1 {
return nil, errors.New("test case count less than 1 or parse error")
}
log.Info().Int("count", len(testCases)).Msg("load testcases successfully")
return testCases, nil
}