30 lines
571 B
C
30 lines
571 B
C
/*
|
|
* Author: username
|
|
* Date: todays_date
|
|
* filename: test_module_name.c
|
|
* description: module_purpose
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <setjmp.h>
|
|
#include <cmocka.h>
|
|
|
|
/*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 */
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
const struct CMUnitTest tests[] = {
|
|
cmocka_unit_test(null_test_success),
|
|
};
|
|
return cmocka_run_group_tests(tests, NULL, NULL);
|
|
}
|