OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |