Refactored template files

+ changed the test group template name.
This commit is contained in:
Jake Goodwin 2025-12-23 14:22:47 -08:00
parent 09734f4ef1
commit 56e38aeeae

View file

@ -12,7 +12,7 @@ extern "C"
#include "module_name.h" #include "module_name.h"
} }
TEST_GROUP(FirstTestGroup) TEST_GROUP(tg_module_name)
{ {
void setup() void setup()
{ {
@ -24,12 +24,12 @@ TEST_GROUP(FirstTestGroup)
} }
}; };
TEST(FirstTestGroup, FirstTest) TEST(tg_module_name, FirstTest)
{ {
FAIL("Fail me!"); FAIL("Fail me!");
} }
TEST(FirstTestGroup, SecondTest) TEST(tg_module_name, SecondTest)
{ {
STRCMP_EQUAL("hello", "world"); STRCMP_EQUAL("hello", "world");
LONGS_EQUAL(1, 2); LONGS_EQUAL(1, 2);