blob: 4c20c72d28e270a17033948bb58cfea71414059e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function test1() {
for (var i = 0; i <= 90; i++) {
var x = i/10.0;
if (Math.round(x) !== Math.floor(x + 0.5))
assertEq(0, 1);
}
}
test1();
function test2() {
for (var i = -5; i >= -90; i--) {
if (i === -5)
x = -0.500000000000001;
else
x = i/10.0;
if (Math.round(x) !== Math.floor(x + 0.5))
assertEq(0, 1);
}
}
test2();
|