mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
14 lines
213 B
Go
14 lines
213 B
Go
|
package test
|
||
|
|
||
|
type TestCases []TestCase
|
||
|
|
||
|
func (tc TestCases) Errors() []TestCase {
|
||
|
var errors []TestCase
|
||
|
for _, test := range tc {
|
||
|
if test.Err != nil {
|
||
|
errors = append(errors, test)
|
||
|
}
|
||
|
}
|
||
|
return errors
|
||
|
}
|