mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 00:15:59 +01:00
The prior PR didn't touch this directory because it was getting too big and I wanted the diff to be smaller for the test directory. Now addressing that. Signed-off-by: Yuval Peress <peress@google.com>
16 lines
451 B
C
16 lines
451 B
C
#ifndef C_TEST_FRAMEWORK_H_
|
|
#define C_TEST_FRAMEWORK_H_
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
/* Test Framework :-) */
|
|
void setup();
|
|
#define TEST_F(SUITE, NAME) void NAME()
|
|
#define RUN_TEST(SUITE, TESTNAME) do { printf(" Running %s.%s: \n", #SUITE, #TESTNAME); setup(); TESTNAME(); printf(" SUCCESS\n"); } while (0)
|
|
#define ASSERT_EQ(A, B) assert((A) == (B))
|
|
#define ASSERT_TRUE(A) assert((A))
|
|
|
|
#endif /* C_TEST_FRAMEWORK_H_ */
|