removed the old C file

This commit is contained in:
jakeg00dwin 2024-03-16 13:39:07 -07:00
parent 221b4f05a9
commit 04352629b2
1 changed files with 0 additions and 31 deletions

View File

@ -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);
}