mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 09:56:18 -05:00
42 lines
889 B
Go
42 lines
889 B
Go
package unit
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// Assertion is an assertion library inspired by Truth.
|
|
// See http://google.github.io/truth/
|
|
type Assertion struct {
|
|
t *testing.T
|
|
}
|
|
|
|
func Assert(t *testing.T) *Assertion {
|
|
assert := new(Assertion)
|
|
assert.t = t
|
|
return assert
|
|
}
|
|
|
|
func (a *Assertion) Int(value int) *IntSubject {
|
|
return NewIntSubject(NewSubject(a), value)
|
|
}
|
|
|
|
func (a *Assertion) Uint16(value uint16) *Uint16Subject {
|
|
return NewUint16Subject(NewSubject(a), value)
|
|
}
|
|
|
|
func (a *Assertion) Byte(value byte) *ByteSubject {
|
|
return NewByteSubject(NewSubject(a), value)
|
|
}
|
|
|
|
func (a *Assertion) Bytes(value []byte) *BytesSubject {
|
|
return NewBytesSubject(NewSubject(a), value)
|
|
}
|
|
|
|
func (a *Assertion) String(value string) *StringSubject {
|
|
return NewStringSubject(NewSubject(a), value)
|
|
}
|
|
|
|
func (a *Assertion) Error(value error) *ErrorSubject {
|
|
return NewErrorSubject(NewSubject(a), value)
|
|
}
|