Function expectEqualDeep [src]
This function is intended to be used only in tests. When the two values are not
deeply equal, prints diagnostics to stderr to show exactly how they are not equal,
then returns a test failure error.
actual and expected are coerced to a common type using peer type resolution.
Deeply equal is defined as follows:
Primitive types are deeply equal if they are equal using == operator.
Struct values are deeply equal if their corresponding fields are deeply equal.
Container types(like Array/Slice/Vector) deeply equal when their corresponding elements are deeply equal.
Pointer values are deeply equal if values they point to are deeply equal.
Note: Self-referential structs are supported (e.g. things like std.SinglyLinkedList)
but may cause infinite recursion or stack overflow when a container has a pointer to itself.
Prototype
pub inline fn expectEqualDeep(expected: anytype, actual: anytype) error{TestExpectedEqual}!void
Possible Errors
Source
pub inline fn expectEqualDeep(expected: anytype, actual: anytype) error{TestExpectedEqual}!void {
const T = @TypeOf(expected, actual);
return expectEqualDeepInner(T, expected, actual);
}