mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
708 B
39 lines
708 B
package assert
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/common/serial"
|
|
)
|
|
|
|
func (this *Assert) Pointer(value interface{}) *PointerSubject {
|
|
return &PointerSubject{
|
|
Subject: Subject{
|
|
a: this,
|
|
disp: serial.PointerToString(value),
|
|
},
|
|
value: value,
|
|
}
|
|
}
|
|
|
|
type PointerSubject struct {
|
|
Subject
|
|
value interface{}
|
|
}
|
|
|
|
func (subject *PointerSubject) Equals(expectation interface{}) {
|
|
if subject.value != expectation {
|
|
subject.Fail("is equal to", serial.PointerToString(expectation))
|
|
}
|
|
}
|
|
|
|
func (subject *PointerSubject) IsNil() {
|
|
if subject.value != nil {
|
|
subject.Fail("is", "nil")
|
|
}
|
|
}
|
|
|
|
func (subject *PointerSubject) IsNotNil() {
|
|
if subject.value == nil {
|
|
subject.Fail("is not", "nil")
|
|
}
|
|
}
|