Versions in this module Expand all Collapse all v0 v0.3.7 Feb 24, 2016 Changes in this version + func Equal(t *testing.T, expected, actual interface{}) + func Nil(t *testing.T, object interface{}) + func NotEqual(t *testing.T, expected, actual interface{}) + func NotNil(t *testing.T, object interface{}) + type FakeNetConn struct + CloseFunc func() error + LocalAddrFunc func() net.Addr + ReadFunc func([]byte) (int, error) + RemoteAddrFunc func() net.Addr + SetDeadlineFunc func(time.Time) error + SetReadDeadlineFunc func(time.Time) error + SetWriteDeadlineFunc func(time.Time) error + WriteFunc func([]byte) (int, error) + func NewFakeNetConn() FakeNetConn + func (f FakeNetConn) Close() error + func (f FakeNetConn) LocalAddr() net.Addr + func (f FakeNetConn) Read(b []byte) (int, error) + func (f FakeNetConn) RemoteAddr() net.Addr + func (f FakeNetConn) SetDeadline(t time.Time) error + func (f FakeNetConn) SetReadDeadline(t time.Time) error + func (f FakeNetConn) SetWriteDeadline(t time.Time) error + func (f FakeNetConn) Write(b []byte) (int, error)