blob: 14ebb6a1c80f1bf25ba57aec2e5dd074de2b27d5 [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 Float32List(int length)
/// Creates an [Float32List] of the specified length (in elements), all of
/// whose elements are initially zero.
/// @description Checks that an instance of Float32List of the specified length
/// is created.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
void check(int length) {
var l = new Float32List(length);
Expect.isTrue(l is Float32List);
Expect.runtimeIsType<Float32List>(l);
Expect.equals(length, l.length);
}
main() {
check(0);
check(1);
check(10);
check(1024);
check(2048);
}