mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-09 03:37:37 -05:00
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
|
package unit
|
||
|
|
||
|
import (
|
||
|
"strconv"
|
||
|
)
|
||
|
|
||
|
type Int64Subject struct {
|
||
|
*Subject
|
||
|
value int64
|
||
|
}
|
||
|
|
||
|
func NewInt64Subject(base *Subject, value int64) *Int64Subject {
|
||
|
return &Int64Subject{
|
||
|
Subject: base,
|
||
|
value: value,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (subject *Int64Subject) Named(name string) *Int64Subject {
|
||
|
subject.Subject.Named(name)
|
||
|
return subject
|
||
|
}
|
||
|
|
||
|
func (subject *Int64Subject) Fail(verb string, other int64) {
|
||
|
subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + strconv.FormatInt(other, 10) + ">.")
|
||
|
}
|
||
|
|
||
|
func (subject *Int64Subject) DisplayString() string {
|
||
|
return subject.Subject.DisplayString(strconv.FormatInt(subject.value, 10))
|
||
|
}
|
||
|
|
||
|
func (subject *Int64Subject) Equals(expectation int64) {
|
||
|
if subject.value != expectation {
|
||
|
subject.Fail("is equal to", expectation)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (subject *Int64Subject) GreaterThan(expectation int64) {
|
||
|
if subject.value <= expectation {
|
||
|
subject.Fail("is greater than", expectation)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (subject *Int64Subject) AtMost(expectation int64) {
|
||
|
if subject.value > expectation {
|
||
|
subject.Fail("is at most", expectation)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (subject *Int64Subject) AtLeast(expectation int64) {
|
||
|
if subject.value < expectation {
|
||
|
subject.Fail("is at least", expectation)
|
||
|
}
|
||
|
}
|