Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var IsSameFloat64 = qt.CmpEquals(cmp.Comparer(func(a, b float64) bool { return math.Abs(a-b) < 0.0001 }))
IsSameFloat64 asserts that two float64 values are equal within a small delta.
View Source
var IsSameString qt.Checker = &stringChecker{ argNames: []string{"got", "want"}, }
IsSameString asserts that two strings are equal. The two strings are normalized (whitespace removed) before doing a ==. Also note that two strings can be the same even if they're of different types.
View Source
var IsSameType qt.Checker = &typeChecker{ argNames: []string{"got", "want"}, }
IsSameType asserts that got is the same type as want.
Functions ¶
func DeepAllowUnexported ¶
DeepAllowUnexported creates an option to allow compare of unexported types in the given list of types. see https://github.com/google/go-cmp/issues/40#issuecomment-328615283
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.