2015-12-02 09:27:18 -05:00
|
|
|
package assert
|
2015-09-09 08:51:26 -04:00
|
|
|
|
|
|
|
import (
|
2015-12-03 10:57:23 -05:00
|
|
|
"github.com/v2ray/v2ray-core/common/serial"
|
2015-09-09 08:51:26 -04:00
|
|
|
)
|
|
|
|
|
2016-05-24 15:55:46 -04:00
|
|
|
func (this *Assert) Int(value int) *IntSubject {
|
|
|
|
return &IntSubject{
|
|
|
|
Subject: Subject{
|
|
|
|
a: this,
|
|
|
|
disp: serial.IntToString(value),
|
|
|
|
},
|
|
|
|
value: value,
|
|
|
|
}
|
2015-12-02 09:27:18 -05:00
|
|
|
}
|
|
|
|
|
2015-09-09 08:51:26 -04:00
|
|
|
type IntSubject struct {
|
2015-12-02 15:44:01 -05:00
|
|
|
Subject
|
2016-05-24 15:55:46 -04:00
|
|
|
value int
|
2015-09-09 08:51:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) Equals(expectation int) {
|
2016-05-24 15:55:46 -04:00
|
|
|
if subject.value != expectation {
|
|
|
|
subject.Fail("is equal to", serial.IntToString(expectation))
|
2015-09-09 08:51:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) GreaterThan(expectation int) {
|
2016-05-24 15:55:46 -04:00
|
|
|
if subject.value <= expectation {
|
|
|
|
subject.Fail("is greater than", serial.IntToString(expectation))
|
2015-09-09 08:51:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) LessThan(expectation int) {
|
2016-05-24 15:55:46 -04:00
|
|
|
if subject.value >= expectation {
|
|
|
|
subject.Fail("is less than", serial.IntToString(expectation))
|
2015-09-09 08:51:26 -04:00
|
|
|
}
|
|
|
|
}
|