mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-11-23 12:02:58 -05:00
Unit test library to simplify test writing
This commit is contained in:
48
testing/unit/bytesubject.go
Normal file
48
testing/unit/bytesubject.go
Normal file
@@ -0,0 +1,48 @@
|
||||
package unit
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
)
|
||||
|
||||
type ByteSubject struct {
|
||||
*Subject
|
||||
value byte
|
||||
}
|
||||
|
||||
func NewByteSubject(base *Subject, value byte) *ByteSubject {
|
||||
subject := new(ByteSubject)
|
||||
subject.Subject = base
|
||||
subject.value = value
|
||||
return subject
|
||||
}
|
||||
|
||||
func (subject *ByteSubject) Named(name string) *ByteSubject {
|
||||
subject.Subject.Named(name)
|
||||
return subject
|
||||
}
|
||||
|
||||
func (subject *ByteSubject) Fail(verb string, other byte) {
|
||||
subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + strconv.Itoa(int(other)) + ">.")
|
||||
}
|
||||
|
||||
func (subject *ByteSubject) DisplayString() string {
|
||||
return subject.Subject.DisplayString(strconv.Itoa(int(subject.value)))
|
||||
}
|
||||
|
||||
func (subject *ByteSubject) Equals(expectation byte) {
|
||||
if subject.value != expectation {
|
||||
subject.Fail("is equal to", expectation)
|
||||
}
|
||||
}
|
||||
|
||||
func (subject *ByteSubject) GreaterThan(expectation byte) {
|
||||
if subject.value <= expectation {
|
||||
subject.Fail("is greater than", expectation)
|
||||
}
|
||||
}
|
||||
|
||||
func (subject *ByteSubject) LessThan(expectation byte) {
|
||||
if subject.value >= expectation {
|
||||
subject.Fail("is less than", expectation)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user