aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs1.c
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-11-25 13:28:53 +0000
committerbloodstalker <thabogre@gmail.com>2016-11-25 13:28:53 +0000
commit1d860098dd5b0f0c23379aae66256b41be01da62 (patch)
treed9ca24e785417c866569cc66ff9af059206cc87c /test/testFuncs1.c
parentadded 13.3 (diff)
downloadmutator-1d860098dd5b0f0c23379aae66256b41be01da62.tar.gz
mutator-1d860098dd5b0f0c23379aae66256b41be01da62.zip
added tdd tests for 13.3
Diffstat (limited to '')
-rw-r--r--test/testFuncs1.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/testFuncs1.c b/test/testFuncs1.c
index dcfbf4e..1a9dbb2 100644
--- a/test/testFuncs1.c
+++ b/test/testFuncs1.c
@@ -966,5 +966,24 @@ void test25(void)
}
}
+void test26 (void)
+{
+ double a;
+ double b;
+ double c;
+ unsigned char d;
+
+ if (a == b)
+ {}
+
+ if (a < b)
+ {}
+
+ if (c >= a)
+ {}
+
+ d = (a <= c);
+}
+
/**********************************************************************************************************************/
/*the last line's been intentionally left blank.*/