OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 // Dart test for testing regular expressions in Dart. | 4 // Dart test for testing regular expressions in Dart. |
5 | 5 |
6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
7 | 7 |
8 main() { | 8 main() { |
9 try { | 9 try { |
10 RegExp ex = new RegExp(null); | 10 RegExp ex = new RegExp(null); |
(...skipping 29 matching lines...) Expand all Loading... |
40 } | 40 } |
41 try { | 41 try { |
42 new RegExp(r"^\w+$").stringMatch(null); | 42 new RegExp(r"^\w+$").stringMatch(null); |
43 Expect.fail("Expected: ArgumentError got: no exception"); | 43 Expect.fail("Expected: ArgumentError got: no exception"); |
44 } catch (ex) { | 44 } catch (ex) { |
45 if (!(ex is ArgumentError)) { | 45 if (!(ex is ArgumentError)) { |
46 Expect.fail("Expected: ArgumentError got: ${ex}"); | 46 Expect.fail("Expected: ArgumentError got: ${ex}"); |
47 } | 47 } |
48 } | 48 } |
49 } | 49 } |
OLD | NEW |