blob: 558a86d32afa5255e9c40c5ec6b361289eaee18a [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";
check(list, separator, expectedString) {
var l = new Uint8ClampedList.fromList(list);
var s = l.join(separator);
Expect.stringEquals(expectedString, s);
}
main() {
check([], "", "");
check([], ", ", "");
check([1], ", ", "1");
check([1, 2, 3, 4, 5, 6, 7, 8, 9], " ", "1 2 3 4 5 6 7 8 9");
}