mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
284f662022
Change-Id: I764d0457da85b2935e1d83309eab4c4b5b3ea000 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/126204 Commit-Queue: Bob Nystrom <rnystrom@google.com> Reviewed-by: Lasse R.H. Nielsen <lrn@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com>
97 lines
2 KiB
Dart
97 lines
2 KiB
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
class ForInTest {
|
|
static testMain() {
|
|
testSimple();
|
|
testBreak();
|
|
testContinue();
|
|
testClosure();
|
|
}
|
|
|
|
static Set<int> getSmallSet() {
|
|
Set<int> set = new Set<int>();
|
|
set.add(1);
|
|
set.add(2);
|
|
set.add(4);
|
|
return set;
|
|
}
|
|
|
|
static void testSimple() {
|
|
Set<int> set = getSmallSet();
|
|
int count = 0;
|
|
for (final i in set) {
|
|
count += i;
|
|
}
|
|
Expect.equals(7, count);
|
|
|
|
count = 0;
|
|
for (var i in set) {
|
|
count += i;
|
|
}
|
|
Expect.equals(7, count);
|
|
|
|
count = 0;
|
|
for (int i in set) {
|
|
count += i;
|
|
}
|
|
Expect.equals(7, count);
|
|
|
|
count = 0;
|
|
for (final int i in set) {
|
|
count += i;
|
|
}
|
|
Expect.equals(7, count);
|
|
|
|
count = 0;
|
|
int i = 0;
|
|
Expect.equals(false, set.contains(i)); // Used to test [i] after loop.
|
|
for (i in set) {
|
|
count += i;
|
|
}
|
|
Expect.equals(7, count);
|
|
Expect.equals(true, set.contains(i));
|
|
// The default implementation of [Set] preserves order.
|
|
Expect.equals(4, i);
|
|
}
|
|
|
|
static void testBreak() {
|
|
Set<int> set = getSmallSet();
|
|
int count = 0;
|
|
for (final i in set) {
|
|
if (i == 4) break;
|
|
count += i;
|
|
}
|
|
Expect.equals(true, count < 4);
|
|
}
|
|
|
|
static void testContinue() {
|
|
Set<int> set = getSmallSet();
|
|
int count = 0;
|
|
for (final i in set) {
|
|
if (i < 4) continue;
|
|
count += i;
|
|
}
|
|
Expect.equals(4, count);
|
|
}
|
|
|
|
static void testClosure() {
|
|
Set<int> set = getSmallSet();
|
|
List<Function> closures = [];
|
|
int index = 0;
|
|
for (var i in set) {
|
|
closures.add(() => i);
|
|
index++;
|
|
}
|
|
|
|
Expect.equals(index, set.length);
|
|
Expect.equals(7, closures[0]() + closures[1]() + closures[2]());
|
|
}
|
|
}
|
|
|
|
main() {
|
|
ForInTest.testMain();
|
|
}
|