aboutsummaryrefslogtreecommitdiffstats
path: root/test/main.c
blob: 36fa778be0dbcb67bb608d6bb077d860486dee95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*intentionally left blank.*/
/*********************************************************************************************************************/
/*inclusion directives*/
#include "testFuncs1.h"
#include "testFuncs2.h"
//#include <string.h>
/*********************************************************************************************************************/
/*Globals*/

/*********************************************************************************************************************/
/*main*/
main()
{
  int a;
  int b;
  int int1;
  int int2;
  blreplacement bool1;
  blreplacement bool2;
  blreplacement decision1;
  blreplacement decision2;
  int level;
  int aa;
  int bb;
  double cc;

  testFuncStatementsinmple();
  testFuncStatementComplexIf();
  testFuncStatementNotCoverage ();
  testFuncLoopFor ();
  testFuncLoopWhile ();
  testFuncContinue ();
  testFuncBreak ();
  testFuncGoto ();
  testFuncNotReturn (a, b);
  testFuncMultiLineStatement ();
  testFuncMultipleStatement ();
  testFuncMultipleStatementNot ();
  testFuncCompOpti1 ();
  testFuncCompOpti2 ();
  testFuncCompOpti3 ();
  testFuncCompOpti4 ();
  testFuncStatementDecl1 ();
  testFuncStatementInt1 (int1, int2);
  testFuncStatementbool1 (bool1 , bool2);
  testFuncStatementbool2 (bool1 , bool2);
  testFuncStatementDecision1 (decision1, decision2);
  testFuncShortCircuit (bool1, bool2);
  testFuncMCDC1 (decision1, decision2);
#if (TRUE == INLINE)
  testFuncMultiInstantiation (level);
#endif
  testFuncQMark (int1, int2);
  testFuncCallBool ();

  test3();
  test4 (aa, bb, cc);
  test5();
  test6();
  test7();
  test8();
  test10();
  test13();
  test15();
  test17();
  test19();
  test20();
  test21();
  test22();
  test23();
  test24();
  test25();
  test26();
  test27();
  test28();
  test29(a);
  test31();

  //malloc();
}
/*********************************************************************************************************************/
/*intentionally left blank.*/