Loading...
Searching...
No Matches
Go to the documentation of this file.
2#ifndef INCLUDE_GUARD__UNIT_TEST_HELPERS_H__
3#define INCLUDE_GUARD__UNIT_TEST_HELPERS_H__
5#define TEST_ASSERT(x) if (!(x)) { return 1; }
6#define TEST_ASSERT_TRUE(x) if (!(x)) { return 1; }
7#define TEST_ASSERT_FALSE(x) if ((x)) { return 1; }