135375f98Sopenharmony_ci#ifndef _TESTHELPER_H 235375f98Sopenharmony_ci#define _TESTHELPER_H 335375f98Sopenharmony_ci 435375f98Sopenharmony_ci#include "Types.h" 535375f98Sopenharmony_ci 635375f98Sopenharmony_civoid AssertEqualExampleStruct(const EXAMPLE_STRUCT_T expected, const EXAMPLE_STRUCT_T actual, const unsigned short line); 735375f98Sopenharmony_ci 835375f98Sopenharmony_ci#define UNITY_TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual, line, message) AssertEqualExampleStruct(expected, actual, line); 935375f98Sopenharmony_ci 1035375f98Sopenharmony_ci#define TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual) UNITY_TEST_ASSERT_EQUAL_EXAMPLE_STRUCT_T(expected, actual, __LINE__, NULL); 1135375f98Sopenharmony_ci 1235375f98Sopenharmony_ci#endif // _TESTHELPER_H 13