mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
28 lines
560 B
Go
28 lines
560 B
Go
package maint // import "gotest.tools/internal/maint"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
// T provides an implementation of assert.TestingT which uses os.Exit, and
|
|
// fmt.Println. This implementation can be used outside of test cases to provide
|
|
// assert.TestingT, for example in a TestMain.
|
|
var T = t{}
|
|
|
|
type t struct{}
|
|
|
|
// FailNow exits with a non-zero code
|
|
func (t t) FailNow() {
|
|
os.Exit(1)
|
|
}
|
|
|
|
// Fail exits with a non-zero code
|
|
func (t t) Fail() {
|
|
os.Exit(2)
|
|
}
|
|
|
|
// Log args by printing them to stdout
|
|
func (t t) Log(args ...interface{}) {
|
|
fmt.Println(args...)
|
|
}
|