From: Mike D. Lowis Date: Thu, 24 Jan 2013 19:07:44 +0000 (-0500) Subject: Updated style of comments for unit tests X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=a611322cef503a01fe2b52fde5f0dbf4273a91f5;p=archive%2Fvim_config.git Updated style of comments for unit tests --- diff --git a/templates/ut.m4 b/templates/ut.m4 index e76a82e..ab936d4 100644 --- a/templates/ut.m4 +++ b/templates/ut.m4 @@ -4,13 +4,9 @@ define(FNDESC, patsubst(substr(ARGS,eval(SEP_IDX+1)),` ',`_'))dnl dnl format(`void test_%s_%s',FNNAME,FNDESC)(void) // Implementation { - // Setup - - // Expected Function Calls - - // Function to Test - - // Asserts - + /* Ensure known test state */ + /* Setup expected call chain */ + /* Call function under test */ + /* Verify test results */ }