Home | History | Annotate | Download | only in test

Lines Matching refs:count

22 	var count int
24 count = 0
26 count = count + 1
28 assertequal(count, 1, "if true")
30 count = 0
32 count = count + 1
34 assertequal(count, 0, "if false")
36 count = 0
38 count = count + one
40 assertequal(count, 1, "if true one")
42 count = 0
44 count = count + 1
47 assertequal(count, 0, "if false one")
49 count = 0
51 count = count + 1
53 assertequal(count, 1, "if cond")
55 count = 0
57 count = count + 1
59 count = count - 1
61 assertequal(count, 1, "if else true")
63 count = 0
65 count = count + 1
67 count = count - 1
69 assertequal(count, -1, "if else false")
71 count = 0
73 count = count + 1
78 count = count - t
80 assertequal(count, -1, "if else false var")
82 count = 0
85 count = count + 1
89 count = count - t
92 assertequal(count, -1, "if else false var outside")