/* Test for this testing framework * $Author: $ * $Revision: $ */ #include #include static const int one = 1; static const int two = 2; static const int three = 3; static const int four = 5; START_TEST(test_this_framework_01) ASSERT(one == 1, "one must be 1"); LOG("one is equal to 1"); return TEST_OK; END_TEST START_TEST(test_this_framework_02) ASSERT(one == 1, "one must be 1"); LOG("test_this_framework_02 called!"); return TEST_OK; END_TEST START_TEST(test_this_framework_03) ASSERT(one == 1, "one must be 1"); LOG("test_this_framework_03 called!"); return TEST_OK; END_TEST START_TEST(test_this_framework_04) ASSERT(one == 1, "one must be 1"); LOG("test_this_framework_04 called!"); return TEST_OK; END_TEST /* Uncomment this to add a main function */ /* STANDALONE */