2015-12-02 09:27:18 -05:00
|
|
|
package assert
|
2015-09-09 09:18:29 -04:00
|
|
|
|
2015-12-02 09:27:18 -05:00
|
|
|
func Error(value error) *ErrorSubject {
|
|
|
|
return &ErrorSubject{value: value}
|
2015-09-09 09:18:29 -04:00
|
|
|
}
|
|
|
|
|
2015-12-02 09:27:18 -05:00
|
|
|
type ErrorSubject struct {
|
|
|
|
Subject
|
|
|
|
value error
|
2015-09-09 09:18:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *ErrorSubject) Named(name string) *ErrorSubject {
|
|
|
|
subject.Subject.Named(name)
|
|
|
|
return subject
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *ErrorSubject) Fail(verb string, other error) {
|
|
|
|
subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + other.Error() + ">.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *ErrorSubject) DisplayString() string {
|
|
|
|
return subject.Subject.DisplayString(subject.value.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *ErrorSubject) Equals(expectation error) {
|
|
|
|
if subject.value != expectation {
|
|
|
|
subject.Fail("is equal to", expectation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *ErrorSubject) IsNil() {
|
2015-09-09 09:26:11 -04:00
|
|
|
if subject.value != nil {
|
|
|
|
subject.FailWithMessage("Not true that " + subject.DisplayString() + " is nil.")
|
|
|
|
}
|
|
|
|
}
|
2015-10-13 15:29:27 -04:00
|
|
|
|
|
|
|
func (subject *ErrorSubject) IsNotNil() {
|
|
|
|
if subject.value == nil {
|
|
|
|
subject.FailWithMessage("Not true that the error is not nil.")
|
|
|
|
}
|
|
|
|
}
|