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.
type SkipPanic 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}
SkipPanic is the value that will be panicked from Skip.