Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Unified Diff: tests/corelib/list_fill_range_test.dart

Issue 14175013: Add setAll, insertAll, replaceRange and fillRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/corelib/list_fill_range_test.dart
diff --git a/tests/corelib/list_fill_range_test.dart b/tests/corelib/list_fill_range_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..cd0e0231e13a2700c6878b1f5eee5df546e2fb9b
--- /dev/null
+++ b/tests/corelib/list_fill_range_test.dart
@@ -0,0 +1,78 @@
+// 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.
+
+import "package:expect/expect.dart";
+import "dart:collection";
+
+test(List list, int start, int end, [fillValue]) {
+ List copy = list.toList();
+ if (?fillValue) {
+ list.fillRange(start, end, fillValue);
+ } else {
+ list.fillRange(start, end, fillValue);
+ }
+ Expect.equals(copy.length, list.length);
+ for (int i = 0; i < start; i++) {
+ Expect.equals(copy[i], list[i]);
+ }
+ for (int i = start; i < end; i++) {
+ Expect.equals(fillValue, list[i]);
+ }
+ for (int i = end; i < list.length; i++) {
+ Expect.equals(copy[i], list[i]);
+ }
+}
+
+class MyList extends ListBase {
+ List list;
+ MyList(this.list);
+ get length => list.length;
+ set length(value) { list.length = value; }
+ operator [](index) => list[index];
+ operator []=(index, val) { list[index] = val; }
+ toString() => list.toString();
+}
+
+main() {
+ test([1, 2, 3], 0, 1);
+ test([1, 2, 3], 0, 1, 99);
+ test([1, 2, 3], 1, 1);
+ test([1, 2, 3], 1, 1, 499);
+ test([1, 2, 3], 3, 3);
+ test([1, 2, 3], 3, 3, 499);
+ test([1, 2, 3].toList(growable: false), 0, 1);
+ test([1, 2, 3].toList(growable: false), 0, 1, 99);
+ test([1, 2, 3].toList(growable: false), 1, 1);
+ test([1, 2, 3].toList(growable: false), 1, 1, 499);
+ test([1, 2, 3].toList(growable: false), 3, 3);
+ test([1, 2, 3].toList(growable: false), 3, 3, 499);
+ test(new MyList([1, 2, 3]), 0, 1);
+ test(new MyList([1, 2, 3]), 0, 1, 99);
+ test(new MyList([1, 2, 3]), 1, 1);
+ test(new MyList([1, 2, 3]), 1, 1, 499);
+ test(new MyList([1, 2, 3]), 3, 3);
+ test(new MyList([1, 2, 3]), 3, 3, 499);
+
+ expectRE(() => test([1, 2, 3], -1, 0));
+ expectRE(() => test([1, 2, 3], 2, 1));
+ expectRE(() => test([1, 2, 3], 0, -1));
+ expectRE(() => test([1, 2, 3], 1, 4));
+ expectRE(() => test(new MyList([1, 2, 3]), -1, 0));
+ expectRE(() => test(new MyList([1, 2, 3]), 2, 1));
+ expectRE(() => test(new MyList([1, 2, 3]), 0, -1));
+ expectRE(() => test(new MyList([1, 2, 3]), 1, 4));
+ expectUE(() => test(const [1, 2, 3], 2, 3));
+ expectUE(() => test(const [1, 2, 3], -1, 0));
+ expectUE(() => test(const [1, 2, 3], 2, 1));
+ expectUE(() => test(const [1, 2, 3], 0, -1));
+ expectUE(() => test(const [1, 2, 3], 1, 4));
+}
+
+void expectRE(Function f) {
+ Expect.throws(f, (e) => e is RangeError);
+}
+
+void expectUE(Function f) {
+ Expect.throws(f, (e) => e is UnsupportedError);
+}

Powered by Google App Engine
This is Rietveld 408576698