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

Unified Diff: packages/quiver/test/iterables/concat_test.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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
« no previous file with comments | « packages/quiver/test/io_test.dart ('k') | packages/quiver/test/iterables/enumerate_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/test/iterables/concat_test.dart
diff --git a/packages/quiver/test/iterables/concat_test.dart b/packages/quiver/test/iterables/concat_test.dart
index 8745066787c490574d7d520eacc44f5f46f41861..003ea7d96894350859b012ee926838537ca96bb0 100644
--- a/packages/quiver/test/iterables/concat_test.dart
+++ b/packages/quiver/test/iterables/concat_test.dart
@@ -24,11 +24,20 @@ main() {
});
test('should handle single input iterables', () {
- expect(concat([[1, 2, 3]]), [1, 2, 3]);
+ expect(
+ concat([
+ [1, 2, 3]
+ ]),
+ [1, 2, 3]);
});
test('should chain multiple input iterables', () {
- expect(concat([[1, 2, 3], [-1, -2, -3]]), [1, 2, 3, -1, -2, -3]);
+ expect(
+ concat([
+ [1, 2, 3],
+ [-1, -2, -3]
+ ]),
+ [1, 2, 3, -1, -2, -3]);
});
test('should throw for null input', () {
@@ -36,7 +45,13 @@ main() {
});
test('should throw if any input is null', () {
- expect(() => concat([[1, 2], null, [3, 4]]).toList(), throws);
+ expect(
+ () => concat([
+ [1, 2],
+ null,
+ [3, 4]
+ ]).toList(),
+ throws);
});
test('should reflectchanges in the inputs', () {
« no previous file with comments | « packages/quiver/test/io_test.dart ('k') | packages/quiver/test/iterables/enumerate_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698