aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs2.h
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-11-28 21:49:59 +0000
committerbloodstalker <thabogre@gmail.com>2016-11-28 21:49:59 +0000
commit7eaa5df0fa139eedb5076e9004286ce0c45ca240 (patch)
tree752ccd76cdafa7c8a23690283f1b0b436fb5d54f /test/testFuncs2.h
parentadded 16.5 (diff)
downloadmutator-7eaa5df0fa139eedb5076e9004286ce0c45ca240.tar.gz
mutator-7eaa5df0fa139eedb5076e9004286ce0c45ca240.zip
added tdd tests for 16.5 and two new tdd test files
Diffstat (limited to '')
-rw-r--r--test/testFuncs2.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/testFuncs2.h b/test/testFuncs2.h
new file mode 100644
index 0000000..e376c53
--- /dev/null
+++ b/test/testFuncs2.h
@@ -0,0 +1,20 @@
+
+extern int a[];
+
+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}};
+
+static void test33(void);
+
+void testFunc4()
+{
+ /*do shit*/
+}
+
+testFunc5( void)
+{
+
+}