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

Side by Side Diff: test/io.dart

Issue 923803002: Fix even more status file stuff. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: 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 | « .status ('k') | no next file » | 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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.test.io; 5 library unittest.test.io;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import 'package:path/path.dart' as p; 9 import 'package:path/path.dart' as p;
10 import 'package:stack_trace/stack_trace.dart'; 10 import 'package:stack_trace/stack_trace.dart';
11 import 'package:unittest/unittest.dart';
11 12
12 /// The root directory of the `unittest` package. 13 /// The root directory of the `unittest` package.
13 final String packageDir = _computePackageDir(); 14 final String packageDir = _computePackageDir();
14 String _computePackageDir() { 15 String _computePackageDir() {
15 var trace = new Trace.current(); 16 var trace = new Trace.current();
16 return p.dirname(p.dirname(p.fromUri(trace.frames.first.uri))); 17 return p.dirname(p.dirname(p.fromUri(trace.frames.first.uri)));
17 } 18 }
18 19
19 /// Returns a matcher that matches a [FileSystemException] with the given 20 /// Returns a matcher that matches a [FileSystemException] with the given
20 /// [message]. 21 /// [message].
21 Matcher isFileSystemException(String message) => predicate( 22 Matcher isFileSystemException(String message) => predicate(
22 (error) => error is FileSystemException && error.message == message, 23 (error) => error is FileSystemException && error.message == message,
23 'is a FileSystemException with message "$message"'); 24 'is a FileSystemException with message "$message"');
24 25
OLDNEW
« no previous file with comments | « .status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698