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

Unified Diff: tests/corelib_strong/reg_exp_all_matches_test.dart

Issue 2985233002: Migrated test block 19 to Dart 2.0. (Closed)
Patch Set: Migrated test block 19 to Dart 2.0. 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 | « tests/corelib_strong/reg_exp5_test.dart ('k') | tests/corelib_strong/reg_exp_first_match_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib_strong/reg_exp_all_matches_test.dart
diff --git a/tests/corelib_strong/reg_exp_all_matches_test.dart b/tests/corelib_strong/reg_exp_all_matches_test.dart
deleted file mode 100644
index 72a2344fbaf6da5e87872ca58228830e9f35a070..0000000000000000000000000000000000000000
--- a/tests/corelib_strong/reg_exp_all_matches_test.dart
+++ /dev/null
@@ -1,118 +0,0 @@
-// 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";
-
-// Dart test program for RegExp.allMatches.
-
-class RegExpAllMatchesTest {
- static testIterator() {
- var matches = new RegExp("foo").allMatches("foo foo");
- Iterator it = matches.iterator;
- Expect.isTrue(it.moveNext());
- Expect.equals('foo', it.current.group(0));
- Expect.isTrue(it.moveNext());
- Expect.equals('foo', it.current.group(0));
- Expect.isFalse(it.moveNext());
-
- // Run two iterators over the same results.
- it = matches.iterator;
- Iterator it2 = matches.iterator;
- Expect.isTrue(it.moveNext());
- Expect.isTrue(it2.moveNext());
- Expect.equals('foo', it.current.group(0));
- Expect.equals('foo', it2.current.group(0));
- Expect.isTrue(it.moveNext());
- Expect.isTrue(it2.moveNext());
- Expect.equals('foo', it.current.group(0));
- Expect.equals('foo', it2.current.group(0));
- Expect.equals(false, it.moveNext());
- Expect.equals(false, it2.moveNext());
- }
-
- static testForEach() {
- var matches = new RegExp("foo").allMatches("foo foo");
- var strbuf = new StringBuffer();
- matches.forEach((Match m) {
- strbuf.write(m.group(0));
- });
- Expect.equals("foofoo", strbuf.toString());
- }
-
- static testMap() {
- var matches = new RegExp("foo?").allMatches("foo fo foo fo");
- var mapped = matches.map((Match m) => "${m.group(0)}bar");
- Expect.equals(4, mapped.length);
- var strbuf = new StringBuffer();
- for (String s in mapped) {
- strbuf.write(s);
- }
- Expect.equals("foobarfobarfoobarfobar", strbuf.toString());
- }
-
- static testFilter() {
- var matches = new RegExp("foo?").allMatches("foo fo foo fo");
- var filtered = matches.where((Match m) {
- return m.group(0) == 'foo';
- });
- Expect.equals(2, filtered.length);
- var strbuf = new StringBuffer();
- for (Match m in filtered) {
- strbuf.write(m.group(0));
- }
- Expect.equals("foofoo", strbuf.toString());
- }
-
- static testEvery() {
- var matches = new RegExp("foo?").allMatches("foo fo foo fo");
- Expect.equals(true, matches.every((Match m) {
- return m.group(0).startsWith("fo");
- }));
- Expect.equals(false, matches.every((Match m) {
- return m.group(0).startsWith("foo");
- }));
- }
-
- static testSome() {
- var matches = new RegExp("foo?").allMatches("foo fo foo fo");
- Expect.equals(true, matches.any((Match m) {
- return m.group(0).startsWith("fo");
- }));
- Expect.equals(true, matches.any((Match m) {
- return m.group(0).startsWith("foo");
- }));
- Expect.equals(false, matches.any((Match m) {
- return m.group(0).startsWith("fooo");
- }));
- }
-
- static testIsEmpty() {
- var matches = new RegExp("foo?").allMatches("foo fo foo fo");
- Expect.equals(false, matches.isEmpty);
- matches = new RegExp("fooo").allMatches("foo fo foo fo");
- Expect.equals(true, matches.isEmpty);
- }
-
- static testGetCount() {
- var matches = new RegExp("foo?").allMatches("foo fo foo fo");
- Expect.equals(4, matches.length);
- matches = new RegExp("fooo").allMatches("foo fo foo fo");
- Expect.equals(0, matches.length);
- }
-
- static testMain() {
- testIterator();
- testForEach();
- testMap();
- testFilter();
- testEvery();
- testSome();
- testIsEmpty();
- testGetCount();
- }
-}
-
-main() {
- RegExpAllMatchesTest.testMain();
-}
« no previous file with comments | « tests/corelib_strong/reg_exp5_test.dart ('k') | tests/corelib_strong/reg_exp_first_match_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698