mirror of https://github.com/v2ray/v2ray-core
parent
08a96e5fe1
commit
c20a7958c2
@ -0,0 +1,42 @@
|
||||
package unit
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
type ErrorSubject struct {
|
||||
*Subject
|
||||
value error
|
||||
}
|
||||
|
||||
func NewErrorSubject(base *Subject, value error) *ErrorSubject {
|
||||
subject := new(StringSubject)
|
||||
subject.Subject = base
|
||||
subject.value = value
|
||||
return subject
|
||||
}
|
||||
|
||||
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() {
|
||||
if subject.value != nil {
|
||||
subject.FailWithMethod("Not true that " + subject.DisplayString() + " is nil.")
|
||||
}
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
package unit
|
||||
|
||||
type StringSubject struct {
|
||||
*Subject
|
||||
value string
|
||||
}
|
||||
|
||||
func NewStringSubject(base *Subject, value string) *StringSubject {
|
||||
subject := new(StringSubject)
|
||||
subject.Subject = base
|
||||
subject.value = value
|
||||
return subject
|
||||
}
|
||||
|
||||
func (subject *StringSubject) Named(name string) *StringSubject {
|
||||
subject.Subject.Named(name)
|
||||
return subject
|
||||
}
|
||||
|
||||
func (subject *StringSubject) Fail(verb string, other string) {
|
||||
subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + other + ">.")
|
||||
}
|
||||
|
||||
func (subject *StringSubject) DisplayString() string {
|
||||
return subject.Subject.DisplayString(subject.value)
|
||||
}
|
||||
|
||||
func (subject *StringSubject) Equals(expectation string) {
|
||||
if subject.value != expectation {
|
||||
subject.Fail("is equal to", expectation)
|
||||
}
|
||||
}
|
Loading…
Reference in new issue