added include for module_name.h and also top comment with info.

This commit is contained in:
jakeg00dwin 2024-03-09 12:17:04 -08:00
parent af29123df1
commit 621f7666a6
1 changed files with 12 additions and 1 deletions

View File

@ -1,9 +1,20 @@
/*
* Author: username
* Date: todays_date
* filename: test_module_name.c
* description: module_purpose
*/
#include <stdarg.h> #include <stdarg.h>
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <setjmp.h> #include <setjmp.h>
#include <cmocka.h> #include <cmocka.h>
/*Including the code under test*/
#include "module_name.h"
/* A test case that does nothing and succeeds. */ /* A test case that does nothing and succeeds. */
static void null_test_success(void **state) { static void null_test_success(void **state) {
(void) state; /* unused */ (void) state; /* unused */