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

Side by Side Diff: pkg/matcher/test/deprecated_matchers_test.dart

Issue 306283002: pkg/matcher: cleanup, updates, deprecations, fixes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698