Documentation ¶
Index ¶
- type AddressSubject
- func (subject *AddressSubject) Equals(another net.Address)
- func (subject *AddressSubject) EqualsString(another string)
- func (subject *AddressSubject) IsDomain()
- func (subject *AddressSubject) IsIPv4()
- func (subject *AddressSubject) IsIPv6()
- func (subject *AddressSubject) IsNotDomain()
- func (subject *AddressSubject) IsNotIPv4()
- func (subject *AddressSubject) IsNotIPv6()
- func (subject *AddressSubject) NotEquals(another net.Address)
- func (subject *AddressSubject) NotEqualsString(another string)
- type Assert
- func (v *Assert) Address(value net.Address) *AddressSubject
- func (v *Assert) Bool(value bool) *BoolSubject
- func (v *Assert) Byte(value byte) *ByteSubject
- func (v *Assert) Bytes(value []byte) *BytesSubject
- func (v *Assert) Destination(value net.Destination) *DestinationSubject
- func (v *Assert) Error(value error) *ErrorSubject
- func (v *Assert) Fail(message string)
- func (v *Assert) IP(value net.IP) *IPSubject
- func (v *Assert) Int(value int) *IntSubject
- func (v *Assert) Int64(value int64) *Int64Subject
- func (v *Assert) Pointer(value interface{}) *PointerSubject
- func (v *Assert) Port(value net.Port) *PortSubject
- func (v *Assert) String(value string) *StringSubject
- func (v *Assert) Uint16(value uint16) *Uint16Subject
- func (v *Assert) Uint32(value uint32) *Uint32Subject
- type BoolSubject
- type ByteSubject
- type BytesSubject
- type DestinationSubject
- func (v *DestinationSubject) Equals(another net.Destination)
- func (v *DestinationSubject) EqualsString(another string)
- func (v *DestinationSubject) HasAddress() *AddressSubject
- func (v *DestinationSubject) HasPort() *PortSubject
- func (v *DestinationSubject) IsNotTCP()
- func (v *DestinationSubject) IsNotUDP()
- func (v *DestinationSubject) IsTCP()
- func (v *DestinationSubject) IsUDP()
- type ErrorSubject
- type IPSubject
- type Int64Subject
- type IntSubject
- type PointerSubject
- type PortSubject
- type StringSubject
- type Subject
- type Uint16Subject
- type Uint32Subject
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddressSubject ¶ added in v1.17.2
type AddressSubject struct { Subject // contains filtered or unexported fields }
func (*AddressSubject) Equals ¶ added in v1.17.2
func (subject *AddressSubject) Equals(another net.Address)
func (*AddressSubject) EqualsString ¶ added in v1.17.2
func (subject *AddressSubject) EqualsString(another string)
func (*AddressSubject) IsDomain ¶ added in v1.17.2
func (subject *AddressSubject) IsDomain()
func (*AddressSubject) IsIPv4 ¶ added in v1.17.2
func (subject *AddressSubject) IsIPv4()
func (*AddressSubject) IsIPv6 ¶ added in v1.17.2
func (subject *AddressSubject) IsIPv6()
func (*AddressSubject) IsNotDomain ¶ added in v1.17.2
func (subject *AddressSubject) IsNotDomain()
func (*AddressSubject) IsNotIPv4 ¶ added in v1.17.2
func (subject *AddressSubject) IsNotIPv4()
func (*AddressSubject) IsNotIPv6 ¶ added in v1.17.2
func (subject *AddressSubject) IsNotIPv6()
func (*AddressSubject) NotEquals ¶ added in v1.17.2
func (subject *AddressSubject) NotEquals(another net.Address)
func (*AddressSubject) NotEqualsString ¶ added in v1.17.2
func (subject *AddressSubject) NotEqualsString(another string)
type Assert ¶ added in v1.17.2
type Assert struct {
// contains filtered or unexported fields
}
func (*Assert) Address ¶ added in v1.17.2
func (v *Assert) Address(value net.Address) *AddressSubject
func (*Assert) Bool ¶ added in v1.17.2
func (v *Assert) Bool(value bool) *BoolSubject
Assert on a boolean variable.
func (*Assert) Byte ¶ added in v1.17.2
func (v *Assert) Byte(value byte) *ByteSubject
func (*Assert) Bytes ¶ added in v1.17.2
func (v *Assert) Bytes(value []byte) *BytesSubject
func (*Assert) Destination ¶ added in v1.17.2
func (v *Assert) Destination(value net.Destination) *DestinationSubject
func (*Assert) Error ¶ added in v1.17.2
func (v *Assert) Error(value error) *ErrorSubject
func (*Assert) Int ¶ added in v1.17.2
func (v *Assert) Int(value int) *IntSubject
func (*Assert) Int64 ¶ added in v1.17.2
func (v *Assert) Int64(value int64) *Int64Subject
func (*Assert) Pointer ¶ added in v1.17.2
func (v *Assert) Pointer(value interface{}) *PointerSubject
func (*Assert) String ¶ added in v1.17.2
func (v *Assert) String(value string) *StringSubject
func (*Assert) Uint16 ¶ added in v1.17.2
func (v *Assert) Uint16(value uint16) *Uint16Subject
func (*Assert) Uint32 ¶ added in v1.18.1
func (v *Assert) Uint32(value uint32) *Uint32Subject
type BoolSubject ¶
type BoolSubject struct { Subject // contains filtered or unexported fields }
func (*BoolSubject) Equals ¶
func (subject *BoolSubject) Equals(expectation bool)
to be equal to another boolean variable.
type ByteSubject ¶
type ByteSubject struct { Subject // contains filtered or unexported fields }
func (*ByteSubject) Equals ¶
func (subject *ByteSubject) Equals(expectation byte)
func (*ByteSubject) GreaterThan ¶
func (subject *ByteSubject) GreaterThan(expectation byte)
func (*ByteSubject) LessThan ¶
func (subject *ByteSubject) LessThan(expectation byte)
type BytesSubject ¶
type BytesSubject struct { Subject // contains filtered or unexported fields }
func (*BytesSubject) Equals ¶
func (subject *BytesSubject) Equals(expectation []byte)
func (*BytesSubject) NotEquals ¶ added in v1.1.4
func (subject *BytesSubject) NotEquals(expectation []byte)
type DestinationSubject ¶ added in v1.17.2
type DestinationSubject struct { Subject // contains filtered or unexported fields }
func (*DestinationSubject) Equals ¶
func (v *DestinationSubject) Equals(another net.Destination)
func (*DestinationSubject) EqualsString ¶ added in v1.17.2
func (v *DestinationSubject) EqualsString(another string)
func (*DestinationSubject) HasAddress ¶ added in v1.17.2
func (v *DestinationSubject) HasAddress() *AddressSubject
func (*DestinationSubject) HasPort ¶ added in v1.17.2
func (v *DestinationSubject) HasPort() *PortSubject
func (*DestinationSubject) IsNotTCP ¶ added in v1.17.2
func (v *DestinationSubject) IsNotTCP()
func (*DestinationSubject) IsNotUDP ¶ added in v1.17.2
func (v *DestinationSubject) IsNotUDP()
func (*DestinationSubject) IsTCP ¶ added in v1.17.2
func (v *DestinationSubject) IsTCP()
func (*DestinationSubject) IsUDP ¶ added in v1.17.2
func (v *DestinationSubject) IsUDP()
type ErrorSubject ¶
type ErrorSubject struct { Subject // contains filtered or unexported fields }
func (*ErrorSubject) Equals ¶
func (subject *ErrorSubject) Equals(expectation error)
func (*ErrorSubject) IsNil ¶
func (subject *ErrorSubject) IsNil()
func (*ErrorSubject) IsNotNil ¶
func (subject *ErrorSubject) IsNotNil()
type IPSubject ¶ added in v1.17.2
type IPSubject struct { Subject // contains filtered or unexported fields }
type Int64Subject ¶
type Int64Subject struct { Subject // contains filtered or unexported fields }
func (*Int64Subject) AtLeast ¶
func (subject *Int64Subject) AtLeast(expectation int64)
func (*Int64Subject) AtMost ¶
func (subject *Int64Subject) AtMost(expectation int64)
func (*Int64Subject) Equals ¶
func (subject *Int64Subject) Equals(expectation int64)
func (*Int64Subject) GreaterThan ¶
func (subject *Int64Subject) GreaterThan(expectation int64)
type IntSubject ¶
type IntSubject struct { Subject // contains filtered or unexported fields }
func (*IntSubject) Equals ¶
func (subject *IntSubject) Equals(expectation int)
func (*IntSubject) GreaterThan ¶
func (subject *IntSubject) GreaterThan(expectation int)
func (*IntSubject) LessThan ¶
func (subject *IntSubject) LessThan(expectation int)
type PointerSubject ¶
type PointerSubject struct { Subject // contains filtered or unexported fields }
func (*PointerSubject) Equals ¶
func (subject *PointerSubject) Equals(expectation interface{})
func (*PointerSubject) IsNil ¶
func (subject *PointerSubject) IsNil()
func (*PointerSubject) IsNotNil ¶
func (subject *PointerSubject) IsNotNil()
type PortSubject ¶ added in v1.17.2
type PortSubject struct { Subject // contains filtered or unexported fields }
func (*PortSubject) Equals ¶ added in v1.17.2
func (subject *PortSubject) Equals(expectation net.Port)
func (*PortSubject) GreaterThan ¶ added in v1.17.2
func (subject *PortSubject) GreaterThan(expectation net.Port)
func (*PortSubject) IsValid ¶ added in v1.17.2
func (subject *PortSubject) IsValid()
func (*PortSubject) LessThan ¶ added in v1.17.2
func (subject *PortSubject) LessThan(expectation net.Port)
type StringSubject ¶
type StringSubject struct { Subject // contains filtered or unexported fields }
func (*StringSubject) Contains ¶
func (subject *StringSubject) Contains(substring string)
func (*StringSubject) Equals ¶
func (subject *StringSubject) Equals(expectation string)
func (*StringSubject) IsEmpty ¶
func (subject *StringSubject) IsEmpty()
func (*StringSubject) NotContains ¶
func (subject *StringSubject) NotContains(substring string)
func (*StringSubject) NotEquals ¶ added in v1.1.4
func (subject *StringSubject) NotEquals(expectation string)
type Subject ¶
type Subject struct {
// contains filtered or unexported fields
}
func (*Subject) DisplayString ¶
func (*Subject) FailWithMessage ¶
type Uint16Subject ¶
type Uint16Subject struct { Subject // contains filtered or unexported fields }
func (*Uint16Subject) Equals ¶
func (subject *Uint16Subject) Equals(expectation uint16)
func (*Uint16Subject) GreaterThan ¶
func (subject *Uint16Subject) GreaterThan(expectation uint16)
func (*Uint16Subject) IsNegative ¶ added in v1.17.2
func (subject *Uint16Subject) IsNegative()
func (*Uint16Subject) IsPositive ¶ added in v1.17.2
func (subject *Uint16Subject) IsPositive()
func (*Uint16Subject) LessThan ¶
func (subject *Uint16Subject) LessThan(expectation uint16)
type Uint32Subject ¶ added in v1.18.1
type Uint32Subject struct { Subject // contains filtered or unexported fields }
func (*Uint32Subject) Equals ¶ added in v1.18.1
func (subject *Uint32Subject) Equals(expectation uint32)
func (*Uint32Subject) GreaterThan ¶ added in v1.18.1
func (subject *Uint32Subject) GreaterThan(expectation uint32)
func (*Uint32Subject) IsNegative ¶ added in v1.18.1
func (subject *Uint32Subject) IsNegative()
func (*Uint32Subject) IsPositive ¶ added in v1.18.1
func (subject *Uint32Subject) IsPositive()
func (*Uint32Subject) LessThan ¶ added in v1.18.1
func (subject *Uint32Subject) LessThan(expectation uint32)
Click to show internal directories.
Click to hide internal directories.