From 621f7666a60f790c8e1feca5013a16d52f3ecad4 Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Sat, 9 Mar 2024 12:17:04 -0800 Subject: [PATCH] added include for module_name.h and also top comment with info. --- .template_files/modules/test_module_name.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.template_files/modules/test_module_name.c b/.template_files/modules/test_module_name.c index 7d47c40..2164c57 100644 --- a/.template_files/modules/test_module_name.c +++ b/.template_files/modules/test_module_name.c @@ -1,9 +1,20 @@ +/* + * Author: username + * Date: todays_date + * filename: test_module_name.c + * description: module_purpose + */ + #include #include #include #include #include - + +/*Including the code under test*/ +#include "module_name.h" + + /* A test case that does nothing and succeeds. */ static void null_test_success(void **state) { (void) state; /* unused */