import "k8s.io/kubernetes/test/e2e/framework/ginkgowrapper"
Package ginkgowrapper wraps Ginkgo Fail and Skip functions to panic with structured data instead of a constant string.
Fail wraps ginkgo.Fail so that it panics with more useful information about the failure. This function will panic with a FailurePanic.
type FailurePanic struct { Message string // The failure message passed to Fail Filename string // The filename that is the source of the failure Line int // The line number of the filename that is the source of the failure FullStackTrace string // A full stack trace starting at the source of the failure }
FailurePanic is the value that will be panicked from Fail.
func (FailurePanic) String() string
String makes FailurePanic look like the old Ginkgo panic when printed.
Package ginkgowrapper imports 7 packages (graph) and is imported by 235 packages. Updated 2020-03-26. Refresh now. Tools for package owners.