()
| 92 | |
| 93 | // Test array sorting with undefined elemeents in the array. |
| 94 | function TestArraySortingWithUndefined() { |
| 95 | var a = [ 3, void 0, 2 ]; |
| 96 | a.sort(); |
| 97 | assertArrayEquals([ 2, 3, void 0 ], a); |
| 98 | } |
| 99 | |
| 100 | TestArraySortingWithUndefined(); |
| 101 |
no test coverage detected