Lines Matching refs:res

5   ITEM Assertion OK : test1: res = (aboo = '')
6 ITEM Assertion OK : test 2: res = (aboo = 'fiddlesticks')
7 ITEM Assertion OK : test 3: res = ('' = aboo)
8 ITEM Assertion OK : test 4: res = ('fiddlesticks' = aboo )
9 ITEM Assertion OK : test 5: res = (testString = '')
10 ITEM Assertion OK : test 6: res = (testString = 'fiddlesticks')
11 ITEM Assertion OK : test 7: res = ('' = testString)
12 ITEM Assertion OK : test 8: res = ('fiddlesticks' = testString )
13 ITEM Assertion OK : test 9: res = ( aboo < " )
14 ITEM Assertion OK : test 10: res = ( testString < " )
15 ITEM Assertion OK : test 11: res = ( aboo > " )
16 ITEM Assertion OK : test 12: res = ( testString > " )
17 ITEM Assertion OK : test 13: res = ( aboo <> '' )
18 ITEM Assertion OK : test 14: res = ( testString <> '' )
19 ITEM Assertion OK : test 15: res = (aboo = something/14)
20 ITEM Assertion OK : test 16: res = something + 'string'
21 ITEM Assertion OK : test 17: res = something & 'string'
22 ITEM Assertion OK : test 18: res = something MOD 10 )
23 ITEM Assertion OK : test 19: res = something AND 1 )
24 ITEM Assertion OK : test 20: res = something AND 0 )
25 ITEM Assertion OK : test 21: res = something OR 12)
26 ITEM Assertion OK : test 22: res = something OR 0 )
27 ITEM Assertion OK : test 23: res = something XOR 0 )
28 ITEM Assertion OK : test 24: res = something XOR 1 )
29 ITEM Assertion OK : test 25: res = something EQV 0 )
30 ITEM Assertion OK : test 26: res = something EQV 1 )
31 ITEM Assertion OK : test 27: res = something IMP 0 )
32 ITEM Assertion OK : test 28: res = something IMP 1 )
33 ITEM Assertion OK : test 29: res = something IMP 14 )
34 ITEM Assertion OK : test 30: res = NOT something )
35 ITEM Assertion OK : test 31: res = something + 12 )
36 ITEM Assertion OK : test 32: res = something - 12 )
37 ITEM Assertion OK : test 33: res = -something )
38 ITEM Assertion OK : test 34: res = something * 12 )