From 04352629b2cea7aa597ce8b811e87a773db5a0aa Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Sat, 16 Mar 2024 13:39:07 -0700 Subject: [PATCH] removed the old C file --- .template_files/modules/test_module_name.c | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 .template_files/modules/test_module_name.c diff --git a/.template_files/modules/test_module_name.c b/.template_files/modules/test_module_name.c deleted file mode 100644 index 121daef..0000000 --- a/.template_files/modules/test_module_name.c +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Author: username - * Date: todays_date - * filename: test_module_name.c - * description: module_purpose - */ - -#include "CppUTest/CommandLineTestRunner.h" -#include "module_name.h" - -TEST_GROUP(FirstTestGroup) -{ - -}; - -TEST(FirstTestGroup, FirstTest) -{ - FAIL("Fail me!"); -} - -TEST(FirstTestGroup, SecondTest) -{ - STRCMP_EQUAL("hello", "world"); - LONGS_EQUAL(1, 2); - CHECK(false); -} - -int main(int ac, char** av) -{ - return CommandLineTestRunner::RunAllTests(ac, av); -}