Sha256: 4a6d81a5eb52c3656d248bda8097e7e9a9c06795da0af114ce397d01ada3f584
Contents?: true
Size: 725 Bytes
Versions: 2
Compression:
Stored size: 725 Bytes
Contents
/* ========================================================================= Ceedling - Test-Centered Build System for C ThrowTheSwitch.org Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams SPDX-License-Identifier: MIT ========================================================================= */ #ifndef _TESTHELPER_H #define _TESTHELPER_H #if TEST_CUSTOM_EXAMPLE_STRUCT_T #include "Types.h" void AssertEqualEXAMPLE_STRUCT_T(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) {AssertEqualEXAMPLE_STRUCT_T(expected, actual, line);} #endif #endif // _TESTHELPER_H
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ceedling-1.0.1 | examples/temp_sensor/test/support/UnityHelper.h |
ceedling-1.0.0 | examples/temp_sensor/test/support/UnityHelper.h |