mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
39 lines
771 B
Go
39 lines
771 B
Go
package assert
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/common/serial"
|
|
)
|
|
|
|
func (this *Assert) Int(value int) *IntSubject {
|
|
return &IntSubject{
|
|
Subject: Subject{
|
|
a: this,
|
|
disp: serial.IntToString(value),
|
|
},
|
|
value: value,
|
|
}
|
|
}
|
|
|
|
type IntSubject struct {
|
|
Subject
|
|
value int
|
|
}
|
|
|
|
func (subject *IntSubject) Equals(expectation int) {
|
|
if subject.value != expectation {
|
|
subject.Fail("is equal to", serial.IntToString(expectation))
|
|
}
|
|
}
|
|
|
|
func (subject *IntSubject) GreaterThan(expectation int) {
|
|
if subject.value <= expectation {
|
|
subject.Fail("is greater than", serial.IntToString(expectation))
|
|
}
|
|
}
|
|
|
|
func (subject *IntSubject) LessThan(expectation int) {
|
|
if subject.value >= expectation {
|
|
subject.Fail("is less than", serial.IntToString(expectation))
|
|
}
|
|
}
|