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

Unified Diff: tests/corelib/list_iterators_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « tests/corelib/list_index_of_test.dart ('k') | tests/corelib/list_last_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/list_iterators_test.dart
diff --git a/tests/corelib/list_iterators_test.dart b/tests/corelib/list_iterators_test.dart
index 6f29061fb0fb28e9535daf5284e6e2c4c975cf45..0be3cf8e061c3b38a1164ea6dff244aa252a86f2 100644
--- a/tests/corelib/list_iterators_test.dart
+++ b/tests/corelib/list_iterators_test.dart
@@ -4,39 +4,42 @@
class ListIteratorsTest {
static void checkListIterator(List a) {
- Iterator it = a.iterator();
- Expect.equals(false, it.hasNext == a.isEmpty);
+ Iterator it = a.iterator;
for (int i = 0; i < a.length; i++) {
- Expect.equals(true, it.hasNext);
- var elem = it.next();
+ Expect.isTrue(it.moveNext());
+ var elem = it.current;
+ Expect.equals(a[i], elem);
}
- Expect.equals(false, it.hasNext);
- bool exceptionCaught = false;
- try {
- var eleme = it.next();
- } on StateError catch (e) {
- exceptionCaught = true;
- }
- Expect.equals(true, exceptionCaught);
+ Expect.isFalse(it.moveNext());
+ Expect.isNull(it.current);
}
static testMain() {
checkListIterator([]);
checkListIterator([1, 2]);
- checkListIterator(new List(0));
- checkListIterator(new List(10));
+ checkListIterator(new List.fixedLength(0));
+ checkListIterator(new List.fixedLength(10));
checkListIterator(new List());
List g = new List();
- g.addAll([1, 2]);
+ g.addAll([1, 2, 3]);
checkListIterator(g);
- Iterator it = g.iterator();
- Expect.equals(true, it.hasNext);
+ // This is mostly undefined behavior.
+ Iterator it = g.iterator;
+ Expect.isTrue(it.moveNext());
g.removeLast();
- Expect.equals(true, it.hasNext);
+ Expect.equals(1, it.current);
+ Expect.isTrue(it.moveNext());
+ g[1] = 49;
+ // The iterator keeps the last value.
+ Expect.equals(2, it.current);
g.removeLast();
- Expect.equals(false, it.hasNext);
+ // The iterator keeps the last value.
+ Expect.equals(2, it.current);
+ Expect.isFalse(it.moveNext());
+ Expect.isNull(it.current);
+ g.clear();
g.addAll([10, 20]);
int sum = 0;
for (var elem in g) {
« no previous file with comments | « tests/corelib/list_index_of_test.dart ('k') | tests/corelib/list_last_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698