/** @My_Project_Title@ -- @My_Project_Description@ @file file.c @brief @author @My_Project_Author@ @bug **/ /* @My_Project_Copyright@ @My_Project_License_Indented@ */ #include "file.h" static int void_function(void) { return 0; } #ifdef TEST static void Test_void_function(CuTest* tc) { int test = void_function(); CuAssertIntEquals(tc, 0, test); } #endif