From 7eaa5df0fa139eedb5076e9004286ce0c45ca240 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Tue, 29 Nov 2016 01:19:59 +0330 Subject: added tdd tests for 16.5 and two new tdd test files --- test/testFuncs2.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/testFuncs2.h (limited to 'test/testFuncs2.h') 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) +{ + +} -- cgit v1.2.3