blob: 011aa3850538e5f3aa2a54b4362f90b44e7568b2 [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 String join([String separator = ""])
* Converts each element to a [String] by calling Object.toString on it.
* Then concatenates the strings, optionally separated by the [separator] string.
* @description Checks that the returned [String] contains all elements from
* [this] separated by [separator].
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
pack(v) => new Float32x4.splat(v);
check(list, separator, expectedString) {
var l = new Float32x4List.fromList(list);
var s = l.join(separator);
Expect.stringEquals(expectedString, s);
}
main() {
check([], "", "");
check([], ", ", "");
check([pack(1.0)], ", ", "[1.000000, 1.000000, 1.000000, 1.000000]");
check([pack(1.0), pack(2.0), pack(3.0), pack(4.0), pack(5.0), pack(6.0), pack(7.0), pack(8.0), pack(9.0)], " ",
"[1.000000, 1.000000, 1.000000, 1.000000] [2.000000, 2.000000, 2.000000, 2.000000] [3.000000, 3.000000, 3.000000, 3.000000]"
" [4.000000, 4.000000, 4.000000, 4.000000] [5.000000, 5.000000, 5.000000, 5.000000] [6.000000, 6.000000, 6.000000, 6.000000]"
" [7.000000, 7.000000, 7.000000, 7.000000] [8.000000, 8.000000, 8.000000, 8.000000] [9.000000, 9.000000, 9.000000, 9.000000]");
}