1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 13:35:23 +00:00
v2fly/testing/assert/bool.go

43 lines
728 B
Go
Raw Normal View History

2016-05-24 19:55:46 +00:00
package assert
import (
"strconv"
)
// Assert on a boolean variable.
2016-11-27 20:39:09 +00:00
func (v *Assert) Bool(value bool) *BoolSubject {
2016-05-24 19:55:46 +00:00
return &BoolSubject{
Subject: Subject{
disp: strconv.FormatBool(value),
2016-11-27 20:39:09 +00:00
a: v,
2016-05-24 19:55:46 +00:00
},
value: value,
}
}
type BoolSubject struct {
Subject
value bool
}
// to be equal to another boolean variable.
func (subject *BoolSubject) Equals(expectation bool) {
if subject.value != expectation {
subject.Fail("is equal to", strconv.FormatBool(expectation))
}
}
// to be true.
func (subject *BoolSubject) IsTrue() {
if subject.value != true {
subject.Fail("is", "True")
}
}
// to be false.
func (subject *BoolSubject) IsFalse() {
if subject.value != false {
subject.Fail("is", "False")
}
}