blob: e3ebb809b2ca714b1dc9d7ef6cea276382ac7544 [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 ByteData(int length)
/// Creates a [ByteData] of the specified length (in elements), all of whose bytes
/// are initially zero.
/// @description Checks that all bytes of the new [ByteData] are zero.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
void check(int length) {
var l = new ByteData(length);
for (int i = 0; i < length; ++i) {
Expect.equals(0, l.getUint8(i));
}
}
main() {
check(1);
check(10);
check(1024);
check(2048);
}