blob: 7aeaddbe3ca0fa2b8bbe823628dd1688066855c2 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion Uint8ClampedList(int length)
/// Creates an [Uint8ClampedList] of the specified length (in elements), all of
/// whose elements are initially zero.
/// @description Checks that all elements of the new [Uint8ClampedList] are zero.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
void check(int length) {
Uint8ClampedList l = new Uint8ClampedList(length);
for (int i = 0; i < length; ++i) {
Expect.equals(l[i], 0);
}
}
main() {
check(1);
check(10);
check(1024);
check(2048);
}