1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
6 Every Array object has a length property whose value is
7 always a nonnegative integer less than 2^32. The value of the length property is
8 numerically greater than the name of every property whose name is an array index
10 description: Checking boundary points
14 assert.sameValue(x.length, 0, 'The value of x.length is expected to be 0');
17 assert.sameValue(x.length, 1, 'The value of x.length is expected to be 1');
20 assert.sameValue(x.length, 2, 'The value of x.length is expected to be 2');
23 assert.sameValue(x.length, 2147483649, 'The value of x.length is expected to be 2147483649');
26 assert.sameValue(x.length, 4294967295, 'The value of x.length is expected to be 4294967295');