ab69873a42
Another take of https://codereview.chromium.org/11410033/ with status changes applied for co19 tests. BUG= Review URL: https://codereview.chromium.org//11369210 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@14837 260f80e4-7a28-3924-810f-c04153c831b5
25 lines
719 B
Dart
25 lines
719 B
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.
|
|
// Dart test for testing regular expressions in Dart.
|
|
|
|
class RegExpTest {
|
|
static test1() {
|
|
RegExp exp = new RegExp("(\\w+)");
|
|
String str = "Parse my string";
|
|
List<Match> matches = new List<Match>.from(exp.allMatches(str));
|
|
Expect.equals(3, matches.length);
|
|
Expect.equals("Parse", matches[0].group(0));
|
|
Expect.equals("my", matches[1].group(0));
|
|
Expect.equals("string", matches[2].group(0));
|
|
}
|
|
|
|
static testMain() {
|
|
test1();
|
|
}
|
|
}
|
|
|
|
main() {
|
|
RegExpTest.testMain();
|
|
}
|