forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvalMultiply.test
More file actions
79 lines (53 loc) · 1.04 KB
/
EvalMultiply.test
File metadata and controls
79 lines (53 loc) · 1.04 KB
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
setup "number * number"
test (7 * 3) is 21
test (8 * 3) is 24
test (9 * 3) is 27
test (-7 * 3) is -21
test (-8 * 3) is -24
test (-9 * 3) is -27
test (7 * -3) is -21
test (8 * -3) is -24
test (9 * -3) is -27
test (-7 * -3) is 21
test (-8 * -3) is 24
test (-9 * -3) is 27
teardown
setup "array * number"
local tA1, tA2
repeat with i = 1 to 10
put i into tA1[i]
end repeat
put tA1 * 3 into tA2
repeat with i = 1 to 10
test tA2[i] is (tA1[i] * 3)
end repeat
// empty array entry is 0
put empty into tA1
put empty into tA1[0]
put tA1 * 3 into tA2
test tA2[0] is 0
teardown
setup "array * array"
local tA1, tA2, tA3
repeat with i = 1 to 10
put i into tA1[i]
put (11 - i) into tA2[i]
end repeat
put tA1 * tA2 into tA3
repeat with i = 1 to 10
test tA3[i] is (tA1[i] * tA2[i])
end repeat
teardown
setup "* errors"
local tA1, tA2
put 5 into tA1[0]
put 0 into tA2[0]
// missing array entries
put 6 into tA1[1]
put 1 into tA2[0]
test-error tA1 * tA2
// non-number array entries
put "abc" into tA2[1]
test-error tA1 * tA2
test-error tA2 * tA1
teardown