mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
32 lines
580 B
Go
32 lines
580 B
Go
package unit
|
|
|
|
type Subject struct {
|
|
assert *Assertion
|
|
name string
|
|
}
|
|
|
|
func NewSubject(assert *Assertion) *Subject {
|
|
subject := new(Subject)
|
|
subject.assert = assert
|
|
subject.name = ""
|
|
return subject
|
|
}
|
|
|
|
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 + ">)"
|
|
}
|