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

Unified Diff: tests/standalone/io/file_input_stream_test.dart

Issue 10252020: test rename overhaul: step 12 - standalone (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/io/file_error_test.dart ('k') | tests/standalone/io/file_invalid_arguments_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/file_input_stream_test.dart
diff --git a/tests/standalone/src/io/FileInputStreamTest.dart b/tests/standalone/io/file_input_stream_test.dart
similarity index 90%
rename from tests/standalone/src/io/FileInputStreamTest.dart
rename to tests/standalone/io/file_input_stream_test.dart
index 567690915c10e44c748c654f7e955d670140d551..029e6aaa9910f362f13f7021e8fabe09e14e6d6d 100644
--- a/tests/standalone/src/io/FileInputStreamTest.dart
+++ b/tests/standalone/io/file_input_stream_test.dart
@@ -12,7 +12,7 @@ String getFilename(String path) =>
new File(path).existsSync() ? path : '../' + path;
void testStringInputStreamSync() {
- String fileName = getFilename("tests/standalone/src/io/readuntil_test.dat");
+ String fileName = getFilename("tests/standalone/io/readuntil_test.dat");
// File contains "Hello Dart\nwassup!\n"
File file = new File(fileName);
StringInputStream x = new StringInputStream(file.openInputStream());
@@ -27,7 +27,7 @@ void testStringInputStreamSync() {
}
void testInputStreamAsync() {
- String fileName = getFilename("tests/standalone/src/io/readuntil_test.dat");
+ String fileName = getFilename("tests/standalone/io/readuntil_test.dat");
// File contains "Hello Dart\nwassup!\n"
var expected = "Hello Dart\nwassup!\n".charCodes();
InputStream x = (new File(fileName)).openInputStream();
@@ -43,7 +43,7 @@ void testInputStreamAsync() {
void testStringInputStreamAsync(String name, int length) {
- String fileName = getFilename("tests/standalone/src/io/$name");
+ String fileName = getFilename("tests/standalone/io/$name");
// File contains 10 lines.
File file = new File(fileName);
Expect.equals(length, file.openSync().lengthSync());
@@ -68,7 +68,7 @@ void testChunkedInputStream() {
ReceivePort done = new ReceivePort();
done.receive((message, replyTo) { done.close(); });
- String fileName = getFilename("tests/standalone/src/io/readuntil_test.dat");
+ String fileName = getFilename("tests/standalone/io/readuntil_test.dat");
// File contains 19 bytes ("Hello Dart\nwassup!")
File file = new File(fileName);
ChunkedInputStream x = new ChunkedInputStream(file.openInputStream());
« no previous file with comments | « tests/standalone/io/file_error_test.dart ('k') | tests/standalone/io/file_invalid_arguments_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698