permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / ctr_unit_test.c
CommitLineData
34e49164
C
1
2int classA(int i) {
3 if(classA()) { x=0; }
4
5 UnitTestEntry("A1");
6 if(MethodA1()) { }
7 if(MethodA2()) { }
8 UnitTestEntry("A3");
9 if(MethodA3()) { }
10 if(MethodA4()) { }
11
12}
13
14int classB(int i) {
15 if(classB()) { x=0; }
16
17 if(MethodB1()) { }
18 UnitTestEntry("B2");
19 if(MethodB2()) { }
20 if(MethodB3()) { }
21 UnitTestEntry("B4");
22 if(MethodB4()) { }
23
24
25}
26
27int lastfunction(int i) {
28}