1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-18 10:26:01 -05:00
v2fly/testing/unit/subject.go

32 lines
548 B
Go
Raw Normal View History

package unit
type Subject struct {
assert *Assertion
name string
}
func NewSubject(assert *Assertion) *Subject {
2015-09-20 07:08:05 -04:00
return &Subject{
assert: assert,
name: "",
}
}
func (subject *Subject) FailWithMessage(message string) {
subject.assert.t.Error(message)
}
func (subject *Subject) Named(name string) {
subject.name = name
}
func (subject *Subject) DisplayString(value string) string {
if len(value) == 0 {
value = "unknown"
}
if len(subject.name) == 0 {
return "<" + value + ">"
}
return subject.name + "(<" + value + ">)"
}