diff options
| author | bloodstalker <thabogre@gmail.com> | 2016-11-26 08:33:11 +0000 | 
|---|---|---|
| committer | bloodstalker <thabogre@gmail.com> | 2016-11-26 08:33:11 +0000 | 
| commit | a0cac018f95ea5a476209b761ef803de536b06e7 (patch) | |
| tree | 6ab079fa1a1c8738b385bff8b4b7c5f888e76bed | |
| parent | added 15.4 (diff) | |
| download | mutator-a0cac018f95ea5a476209b761ef803de536b06e7.tar.gz mutator-a0cac018f95ea5a476209b761ef803de536b06e7.zip | |
added tdd tests for 15.4
| -rw-r--r-- | test/testFuncs1.c | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/test/testFuncs1.c b/test/testFuncs1.c index 4f606a2..cc97eaf 100644 --- a/test/testFuncs1.c +++ b/test/testFuncs1.c @@ -1121,5 +1121,18 @@ int test31(void)  		return 1;
  }
 +void test32(void)
 +{
 +	int a;
 +
 +	switch (a == 1)
 +	{
 +	case 1:
 +		a++;
 +	case 0:
 +		a--;
 +	}
 +}
 +
  /**********************************************************************************************************************/
  /*the last line's been intentionally left blank.*/
 | 
