From 0c5bc4caf9cfb221822fead442b462be2f47b97b Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Wed, 10 Aug 2011 17:54:15 +0000 Subject: Unittests for encode git-svn-id: https://svn.kapsi.fi/jpa/nanopb@952 e3a754e5-d11d-0410-8d38-ebb782a927b9 --- tests/unittests.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/unittests.h (limited to 'tests/unittests.h') diff --git a/tests/unittests.h b/tests/unittests.h new file mode 100644 index 0000000..c2b470a --- /dev/null +++ b/tests/unittests.h @@ -0,0 +1,14 @@ +#include + +#define COMMENT(x) printf("\n----" x "----\n"); +#define STR(x) #x +#define STR2(x) STR(x) +#define TEST(x) \ + if (!(x)) { \ + fprintf(stderr, "\033[31;1mFAILED:\033[22;39m " __FILE__ ":" STR2(__LINE__) " " #x "\n"); \ + status = 1; \ + } else { \ + printf("\033[32;1mOK:\033[22;39m " #x "\n"); \ + } + + -- cgit