Versions in this module Expand all Collapse all v1 v1.1.1 Oct 21, 2018 v1.1.0 Oct 18, 2018 Changes in this version type Matcher + func HasMapValue(expected interface{}) Matcher v1.0.0 Oct 18, 2018 Changes in this version + const EMPTY + const LOGIC_NOT + func Assert(t *testing.T, actual interface{}, matcher Matcher) + type BaseMatcher struct + Expected interface{} + Reason string + func (this *BaseMatcher) FailReason(actual interface{}) string + func (this *BaseMatcher) Match(actual interface{}) bool + func (this *BaseMatcher) NegationFailReason(actual interface{}) string + type Matcher interface + FailReason func(actual interface{}) string + Match func(actual interface{}) bool + NegationFailReason func(actual interface{}) string + func ContainString(expected string) Matcher + func EmptyList() Matcher + func EndWith(expected string) Matcher + func Equal(expected interface{}) Matcher + func GreaterThan(expected interface{}) Matcher + func GreaterThanOrEquals(expected interface{}) Matcher + func HasItems(expected interface{}) Matcher + func LessThan(expected interface{}) Matcher + func LessThanOrEquals(expected interface{}) Matcher + func NilVal() Matcher + func Not(matcher Matcher) Matcher + func NotEqual(expected interface{}) Matcher + func NotNilVal() Matcher + func StartWith(expected string) Matcher