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

Unified Diff: tests/corelib/list_test.dart

Issue 14753009: Make StreamSubscription be the active part of a stream. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Made tests run (mostly) Created 7 years, 7 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_test.dart
diff --git a/tests/corelib/list_test.dart b/tests/corelib/list_test.dart
index 28629a95d7f2ee6848ee56ac92ac8aef90ef2774..1d67ad16aa14d9d709a357164200b10b2430a7a1 100644
--- a/tests/corelib/list_test.dart
+++ b/tests/corelib/list_test.dart
@@ -14,6 +14,13 @@ void main() {
testTypedList(new Int16List(4));
testTypedList(new Uint32List(4));
testTypedList(new Int32List(4));
+ // toList returns a List<int>.
floitsch 2013/05/22 16:26:29 unrelated change?
Lasse Reichstein Nielsen 2013/05/24 06:02:49 Completely.
+ testTypedList(new Uint8List(4).toList(growable: false));
+ testTypedList(new Int8List(4).toList(growable: false));
+ testTypedList(new Uint16List(4).toList(growable: false));
+ testTypedList(new Int16List(4).toList(growable: false));
+ testTypedList(new Uint32List(4).toList(growable: false));
+ testTypedList(new Int32List(4).toList(growable: false));
// Fixed length lists, length 4.
testFixedLengthList(new List(4));
@@ -23,12 +30,6 @@ void main() {
testFixedLengthList(new MyFixedList(new List(4)));
testFixedLengthList(new MyFixedList(new List(4)).toList(growable: false));
- testFixedLengthList(new Uint8List(4).toList(growable: false));
- testFixedLengthList(new Int8List(4).toList(growable: false));
- testFixedLengthList(new Uint16List(4).toList(growable: false));
- testFixedLengthList(new Int16List(4).toList(growable: false));
- testFixedLengthList(new Uint32List(4).toList(growable: false));
- testFixedLengthList(new Int32List(4).toList(growable: false));
// Growable lists. Initial length 0.
testGrowableList(new List());

Powered by Google App Engine
This is Rietveld 408576698