From: Mike D. Lowis Date: Mon, 28 Jan 2013 16:23:44 +0000 (-0500) Subject: Updated comment style of unit test template X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=3c06fb9771db8a30ebbfd4f28496af83a41da32c;p=archive%2Fvim_config.git Updated comment style of unit test template --- diff --git a/templates/test.m4 b/templates/test.m4 index ba028ff..be4d444 100644 --- a/templates/test.m4 +++ b/templates/test.m4 @@ -1,15 +1,16 @@ -#include "unity.h" - -// File to Test +/* File to Test */ `#'include "format(`%s',ARGS).h" -// Real Includes +/* Real Includes */ +#include "unity.h" + +/* Mock Includes */ -// Mock Includes +/* Globals */ -// Globals +/* Helper Functions */ -// Helper Functions +/* Ceedling Functions */ void setUp(void) { } @@ -18,6 +19,6 @@ void tearDown(void) { } -//----------------------------------------------------------------------------- +/*****************************************************************************/