blob: daf87126454de27cd14129858bd5e63a7fb74e11 [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 E first
/// ...
/// Otherwise returns the first element in the iteration order, equivalent to
/// this.elementAt(0).
/// @description Checks that this method is equivalent to this.elementAt(0).
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
void check(List<int> array) {
var l = new Uint8ClampedList.fromList(array);
Expect.equals(l.elementAt(0), l.first);
}
void checkClear(length) {
var l = new Uint8ClampedList(length);
Expect.equals(l.elementAt(0), l.first);
}
main() {
check([1]);
check([1, 2, 3, 4, 5]);
check([
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
]);
checkClear(1);
checkClear(100);
}