forked from 3rd-party/fff
A simple test framework for C code with googletest compatibility
This commit is contained in:
15
test/c_test_framework.h
Normal file
15
test/c_test_framework.h
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#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) printf(" Running %s.%s: \n", #SUITE, #TESTNAME); setup(); TESTNAME(); printf(" SUCCESS\n");
|
||||||
|
#define ASSERT_EQ(A, B) assert((A) == (B))
|
||||||
|
#define ASSERT_TRUE(A) assert((A))
|
||||||
|
|
||||||
|
#endif /* C_TEST_FRAMEWORK_H_ */
|
||||||
Reference in New Issue
Block a user