diff options
author | bloodstalker <thabogre@gmail.com> | 2016-11-24 15:22:37 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-11-24 15:22:37 +0000 |
commit | fb4c8a42c6fe9e6d94d07ae95a333aaecb769f84 (patch) | |
tree | 8f9292e12c500cd5b74936f847f1e50b79ff6a61 /test/testFuncs1.c | |
parent | added 12.4 and 12.5 (diff) | |
download | mutator-fb4c8a42c6fe9e6d94d07ae95a333aaecb769f84.tar.gz mutator-fb4c8a42c6fe9e6d94d07ae95a333aaecb769f84.zip |
added tdd tests for 12.4 and 12.5
Diffstat (limited to 'test/testFuncs1.c')
-rw-r--r-- | test/testFuncs1.c | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/test/testFuncs1.c b/test/testFuncs1.c index 2480afa..8c05582 100644 --- a/test/testFuncs1.c +++ b/test/testFuncs1.c @@ -4,6 +4,7 @@ /*include*/
/**********************************************************************************************************************/
#include "testFuncs1.h"
+//#include <string.h>
/**************************************************MACROS & DEFS*******************************************************/
/**********************************************************************************************************************/
@@ -836,5 +837,61 @@ void test17(void) a = sizeof (b = 2000U);
}
+void test18(void)
+{
+ int a;
+ int b;
+ int c;
+ unsigned char d;
+
+ if (c && (a = b))
+ {
+ /*yada yada*/
+ }
+
+ if ((c = a) || a)
+ {
+ /*yada*/
+ }
+ if (c && (a || c))
+ {
+
+ }
+
+ d = c && (a = c);
+
+}
+
+void test19(void)
+{
+ const int a = 100;
+
+ unsigned char flag = 1;
+
+ unsigned char flag2;
+
+ unsigned char flag3;
+
+ //char *str = "loco\0";
+
+ const double pi = 3.54;
+
+ if ((flag) && pi)
+ {}
+
+ if (flag || flag2 && flag3)
+ {}
+
+ if (a == 0 && flag)
+ {}
+
+ if (flag || (a == 0))
+ {}
+
+ if (!flag || flag2)
+ {}
+
+}
+
/**********************************************************************************************************************/
/*the last line's been intentionally left blank.*/
|