| Index: tests/corelib/src/RegExpFirstMatchTest.dart
|
| diff --git a/tests/corelib/src/RegExpFirstMatchTest.dart b/tests/corelib/src/RegExpFirstMatchTest.dart
|
| deleted file mode 100644
|
| index 23a0f3beef6e9f3c3a43eacf0dc965729cf46b93..0000000000000000000000000000000000000000
|
| --- a/tests/corelib/src/RegExpFirstMatchTest.dart
|
| +++ /dev/null
|
| @@ -1,16 +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.
|
| -
|
| -// Dart test program for RegExp.firstMatch.
|
| -
|
| -class RegExpFirstMatchTest {
|
| - static testMain() {
|
| - Expect.equals('cat', new RegExp("(\\w+)").firstMatch("cat dog")[0]);
|
| - Expect.equals(null, new RegExp("foo").firstMatch("bar"));
|
| - }
|
| -}
|
| -
|
| -main() {
|
| - RegExpFirstMatchTest.testMain();
|
| -}
|
|
|