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

Side by Side Diff: tests/standalone/io/file_write_as_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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
« no previous file with comments | « tests/standalone/io/file_test.dart ('k') | tests/standalone/io/fuzz_support.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) 2012, the Dart project authors. Please see the AUTHORS file 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 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 import "package:expect/expect.dart";
6 import 'dart:async'; 5 import 'dart:async';
7 import 'dart:io'; 6 import 'dart:io';
8 import 'dart:isolate'; 7 import 'dart:isolate';
9 8
10 testWriteAsBytesSync(dir) { 9 testWriteAsBytesSync(dir) {
11 var f = new File('${dir.path}/bytes_sync.txt'); 10 var f = new File('${dir.path}/bytes_sync.txt');
12 var data = [50,50,50]; 11 var data = [50,50,50];
13 f.writeAsBytesSync(data); 12 f.writeAsBytesSync(data);
14 Expect.listEquals(data, f.readAsBytesSync()); 13 Expect.listEquals(data, f.readAsBytesSync());
15 f.writeAsBytesSync(data, FileMode.APPEND); 14 f.writeAsBytesSync(data, FileMode.APPEND);
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 var tempDir = new Directory('').createTempSync(); 71 var tempDir = new Directory('').createTempSync();
73 testWriteAsBytesSync(tempDir); 72 testWriteAsBytesSync(tempDir);
74 testWriteAsStringSync(tempDir); 73 testWriteAsStringSync(tempDir);
75 testWriteAsBytes(tempDir).then((_) { 74 testWriteAsBytes(tempDir).then((_) {
76 return testWriteAsString(tempDir); 75 return testWriteAsString(tempDir);
77 }).then((_) { 76 }).then((_) {
78 tempDir.deleteSync(recursive: true); 77 tempDir.deleteSync(recursive: true);
79 port.close(); 78 port.close();
80 }); 79 });
81 } 80 }
OLDNEW
« no previous file with comments | « tests/standalone/io/file_test.dart ('k') | tests/standalone/io/fuzz_support.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698