Sha256: acb2c50d4e8ccdac538496e57eaf6ebc967257e985bcdba1fd49e12a486435dc
Contents?: true
Size: 495 Bytes
Versions: 44
Compression:
Stored size: 495 Bytes
Contents
#ifndef _TESTHELPER_H #define _TESTHELPER_H #include "Types.h" void AssertEqualExampleStruct(const EXAMPLE_STRUCT_T expected, const EXAMPLE_STRUCT_T actual, const unsigned short line); #define UNITY_TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual, line, message) AssertEqualExampleStruct(expected, actual, line); #define TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual) UNITY_TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual, __LINE__, NULL); #endif // _TESTHELPER_H
Version data entries
44 entries across 29 versions & 1 rubygems