diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-30 19:56:35 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-30 19:56:35 +0000 |
commit | a99336dae485436c1bd5c90e48501472a262435c (patch) | |
tree | dd247d1bb2ed4ddf97730436a538bc6728035805 /test/testFuncs2.h | |
parent | fixed a problem where the default input list returned an error (diff) | |
download | mutator-a99336dae485436c1bd5c90e48501472a262435c.tar.gz mutator-a99336dae485436c1bd5c90e48501472a262435c.zip |
the tdd test files look more readible and eligible
Diffstat (limited to 'test/testFuncs2.h')
-rw-r--r-- | test/testFuncs2.h | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/test/testFuncs2.h b/test/testFuncs2.h index e376c53..85ddeee 100644 --- a/test/testFuncs2.h +++ b/test/testFuncs2.h @@ -1,4 +1,11 @@ +/*first line intentionally left blank.*/ +/*********************************************************************************************************************/ +/*Defines*/ +#ifndef TESTFUNCS2_H +#define TESTFUNCS2_H +/*********************************************************************************************************************/ +/*Globals*/ extern int a[]; extern int b[] = {1, 2, 3, 4, 5, 6}; @@ -6,7 +13,8 @@ extern int b[] = {1, 2, 3, 4, 5, 6}; int c[2][3] = {1, 2, 3, 4, 5, 6}; int d[2][3] = {{1, 2, 3}, {4, 5, 6}}; - +/*********************************************************************************************************************/ +/*funciton types go here.*/ static void test33(void); void testFunc4() @@ -16,5 +24,14 @@ void testFunc4() testFunc5( void) { - + //different kind of comment + ///another kind + /*this kind*/ + /**that kind*/ } + +void testFunc9(void); + +/*********************************************************************************************************************/ +#endif +/*last line intentionally left blank.*/ |