]> git.mdlowis.com Git - archive/vim_config.git/commitdiff
Updated style of comments for unit tests
authorMike D. Lowis <mike@mdlowis.com>
Thu, 24 Jan 2013 19:07:44 +0000 (14:07 -0500)
committerMike D. Lowis <mike@mdlowis.com>
Thu, 24 Jan 2013 19:07:44 +0000 (14:07 -0500)
templates/ut.m4

index e76a82ea1a568dbe1cbd90e278adfb7f00a5bad9..ab936d4a6854fb78c5f38ee902a9f916f15e6bb3 100644 (file)
@@ -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 */
 }