Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Result ¶
type Result struct {
// contains filtered or unexported fields
}
Result contains a single assertion failure as an error. You should not create a Result directly, use So instead. Once created, a Result is read-only and only allows queries using the provided methods.
func So ¶
So is a convenience function (as opposed to an inconvenience function?) for running assertions on arbitrary arguments in any context. It allows you to perform assertion-like behavior and decide what happens in the event of a failure. It is a variant of assertions.So in every respect except its return value. In this case, the return value is a *Result which possesses several of its own convenience methods:
fmt.Println(assert.So(1, should.Equal, 1)) // Calls String() and prints the representation of the assertion. assert.So(1, should.Equal, 1).Println() // Calls fmt.Print with the failure message and file:line header. assert.So(1, should.Equal, 1).Log() // Calls log.Print with the failure message and file:line header. assert.So(1, should.Equal, 1).Panic() // Calls log.Panic with the failure message and file:line header. assert.So(1, should.Equal, 1).Fatal() // Calls log.Fatal with the failure message and file:line header. if err := assert.So(1, should.Equal, 1).Error(); err != nil { // Allows custom handling of the error, which will include the failure message and file:line header. }
func (*Result) Error ¶
Error returns the error representing an assertion failure, which is nil in the case of a passed assertion.