diff --git a/.template_files/test_module/test_module_name.cpp b/.template_files/test_module/test_module_name.cpp index aa1e8f7..87598f5 100644 --- a/.template_files/test_module/test_module_name.cpp +++ b/.template_files/test_module/test_module_name.cpp @@ -24,15 +24,14 @@ TEST_GROUP(tg_module_name) } }; -TEST(tg_module_name, FirstTest) +TEST(tg_module_name, groupRuns) { - FAIL("Fail me!"); + CHECK_TRUE(true); } -TEST(tg_module_name, SecondTest) +TEST(tg_module_name, TemplateFunctionWorks) { - STRCMP_EQUAL("hello", "world"); - LONGS_EQUAL(1, 2); - CHECK(false); + int a = 2; + int b = add_two(a); + CHECK_EQUAL_TEXT(4, b, "Returned value incorrect!"); } -