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

Side by Side Diff: lib/src/frontend/throws_matcher.dart

Issue 955543002: Move a bunch of src/ files into subdirectories. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: Fix library tags Created 5 years, 10 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
« no previous file with comments | « lib/src/frontend/prints_matcher.dart ('k') | lib/src/frontend/throws_matchers.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 4
5 library unittest.throws_matcher; 5 library unittest.frontend.throws_matcher;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:matcher/matcher.dart' hide fail, expect; 9 import 'package:matcher/matcher.dart' hide fail, expect;
10 10
11 import '../backend/invoker.dart';
12 import '../utils.dart';
11 import 'expect.dart'; 13 import 'expect.dart';
12 import 'invoker.dart';
13 import 'utils.dart';
14 14
15 /// This can be used to match two kinds of objects: 15 /// This can be used to match two kinds of objects:
16 /// 16 ///
17 /// * A [Function] that throws an exception when called. The function cannot 17 /// * A [Function] that throws an exception when called. The function cannot
18 /// take any arguments. If you want to test that a function expecting 18 /// take any arguments. If you want to test that a function expecting
19 /// arguments throws, wrap it in another zero-argument function that calls 19 /// arguments throws, wrap it in another zero-argument function that calls
20 /// the one you want to test. 20 /// the one you want to test.
21 /// 21 ///
22 /// * A [Future] that completes with an exception. Note that this creates an 22 /// * A [Future] that completes with an exception. Note that this creates an
23 /// asynchronous expectation. The call to `expect()` that includes this will 23 /// asynchronous expectation. The call to `expect()` that includes this will
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 mismatchDescription 103 mismatchDescription
104 .add('threw ') 104 .add('threw ')
105 .addDescriptionOf(matchState['exception']); 105 .addDescriptionOf(matchState['exception']);
106 if (verbose) { 106 if (verbose) {
107 mismatchDescription.add(' at ').add(matchState['stack'].toString()); 107 mismatchDescription.add(' at ').add(matchState['stack'].toString());
108 } 108 }
109 return mismatchDescription; 109 return mismatchDescription;
110 } 110 }
111 } 111 }
112 } 112 }
OLDNEW
« no previous file with comments | « lib/src/frontend/prints_matcher.dart ('k') | lib/src/frontend/throws_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698