blob: a9dbd7ebc4543c7e9f249f4b8ca6d1b1497ed01f [file] [log] [blame]
// Copyright (c) 2017, 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 reduce(E combine(E value, E element))
* ...
* If iterable has only one element, that element is returned.
* @description Checks that the returned value is correct.
* @author ngl@unipro.ru
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<int> list, int expected) {
var l = new Uint8ClampedList.fromList(list);
var res = l.reduce((prev, cur) => prev + cur);
Expect.equals(expected, res);
}
checkConst(List<int> list, int expected) {
var l = new Uint8ClampedList.fromList(list);
var res = l.reduce((prev, cur) => 1);
Expect.equals(expected, res);
}
main() {
check([6], 6);
check([10], 10);
checkConst([3], 3);
}