| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 library matcher.deprecated_matchers_test; | |
| 6 | |
| 7 import 'package:matcher/matcher.dart'; | |
| 8 import 'package:unittest/unittest.dart' show test, group; | |
| 9 | |
| 10 import 'test_utils.dart'; | |
| 11 | |
| 12 void main() { | |
| 13 initUtils(); | |
| 14 | |
| 15 test('throwsAbstractClassInstantiationError', () { | |
| 16 expect(() => new _AbstractClass(), throwsAbstractClassInstantiationError); | |
| 17 }); | |
| 18 | |
| 19 test('throwsFallThroughError', () { | |
| 20 expect(() { | |
| 21 var a = 0; | |
| 22 switch (a) { | |
| 23 case 0: | |
| 24 a += 1; | |
| 25 case 1: | |
| 26 return; | |
| 27 } | |
| 28 }, throwsFallThroughError); | |
| 29 }); | |
| 30 } | |
| 31 | |
| 32 abstract class _AbstractClass { | |
| 33 } | |
| OLD | NEW |