mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
package assert
|
|
|
|
import (
|
|
"strconv"
|
|
)
|
|
|
|
func Uint16(value uint16) *Uint16Subject {
|
|
return &Uint16Subject{value: value}
|
|
}
|
|
|
|
type Uint16Subject struct {
|
|
Subject
|
|
value uint16
|
|
}
|
|
|
|
func (subject *Uint16Subject) Named(name string) *Uint16Subject {
|
|
subject.Subject.Named(name)
|
|
return subject
|
|
}
|
|
|
|
func (subject *Uint16Subject) Fail(verb string, other uint16) {
|
|
subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + strconv.Itoa(int(other)) + ">.")
|
|
}
|
|
|
|
func (subject *Uint16Subject) DisplayString() string {
|
|
return subject.Subject.DisplayString(strconv.Itoa(int(subject.value)))
|
|
}
|
|
|
|
func (subject *Uint16Subject) Equals(expectation uint16) {
|
|
if subject.value != expectation {
|
|
subject.Fail("is equal to", expectation)
|
|
}
|
|
}
|
|
|
|
func (subject *Uint16Subject) GreaterThan(expectation uint16) {
|
|
if subject.value <= expectation {
|
|
subject.Fail("is greater than", expectation)
|
|
}
|
|
}
|
|
|
|
func (subject *Uint16Subject) LessThan(expectation uint16) {
|
|
if subject.value >= expectation {
|
|
subject.Fail("is less than", expectation)
|
|
}
|
|
}
|
|
|
|
func (subject *Uint16Subject) Positive() {
|
|
if subject.value <= 0 {
|
|
subject.FailWithMessage("Not true that " + subject.DisplayString() + " is positive.")
|
|
}
|
|
}
|