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

Side by Side Diff: packages/quiver/test/iterables/partition_test.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 Google Inc. All Rights Reserved. 1 // Copyright 2014 Google Inc. All Rights Reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License. 4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 26 matching lines...) Expand all
37 }); 37 });
38 38
39 test('should return one partition if partition size == input size', () { 39 test('should return one partition if partition size == input size', () {
40 var it = partition([1, 2, 3, 4, 5], 5).iterator; 40 var it = partition([1, 2, 3, 4, 5], 5).iterator;
41 expect(it.moveNext(), isTrue); 41 expect(it.moveNext(), isTrue);
42 expect(it.current, equals([1, 2, 3, 4, 5])); 42 expect(it.current, equals([1, 2, 3, 4, 5]));
43 expect(it.moveNext(), isFalse); 43 expect(it.moveNext(), isFalse);
44 expect(it.current, isNull); 44 expect(it.current, isNull);
45 }); 45 });
46 46
47 test('should return partitions of correct size if ' 47 test(
48 'should return partitions of correct size if '
48 'partition size > input size', () { 49 'partition size > input size', () {
49 var it = partition([1, 2, 3, 4, 5], 3).iterator; 50 var it = partition([1, 2, 3, 4, 5], 3).iterator;
50 expect(it.moveNext(), isTrue); 51 expect(it.moveNext(), isTrue);
51 expect(it.current, equals([1, 2, 3])); 52 expect(it.current, equals([1, 2, 3]));
52 expect(it.moveNext(), isTrue); 53 expect(it.moveNext(), isTrue);
53 expect(it.current, equals([4, 5])); 54 expect(it.current, equals([4, 5]));
54 expect(it.moveNext(), isFalse); 55 expect(it.moveNext(), isFalse);
55 expect(it.current, isNull); 56 expect(it.current, isNull);
56 }); 57 });
57 }); 58 });
58 } 59 }
OLDNEW
« no previous file with comments | « packages/quiver/test/iterables/merge_test.dart ('k') | packages/quiver/test/iterables/zip_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698