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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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
Index: tests/standalone/io/windows_file_system_links_test.dart
diff --git a/tests/standalone/io/windows_file_system_links_test.dart b/tests/standalone/io/windows_file_system_links_test.dart
index 69a3144d1cbdafd790d1cfe5a04c826e18abc5ce..5268ccf4f0b90ee48fa17f244301287120ff116e 100644
--- a/tests/standalone/io/windows_file_system_links_test.dart
+++ b/tests/standalone/io/windows_file_system_links_test.dart
@@ -20,14 +20,12 @@ testJunctionTypeDelete() {
Expect.isFalse(FileSystemEntity.isLinkSync(x));
Expect.isTrue(FileSystemEntity.isDirectorySync(y));
Expect.isTrue(FileSystemEntity.isDirectorySync(x));
- Expect.equals(FileSystemEntityType.DIRECTORY,
- FileSystemEntity.typeSync(y));
- Expect.equals(FileSystemEntityType.DIRECTORY,
- FileSystemEntity.typeSync(x));
+ Expect.equals(FileSystemEntityType.DIRECTORY, FileSystemEntity.typeSync(y));
+ Expect.equals(FileSystemEntityType.DIRECTORY, FileSystemEntity.typeSync(x));
Expect.equals(FileSystemEntityType.LINK,
- FileSystemEntity.typeSync(y, followLinks: false));
+ FileSystemEntity.typeSync(y, followLinks: false));
Expect.equals(FileSystemEntityType.DIRECTORY,
- FileSystemEntity.typeSync(x, followLinks: false));
+ FileSystemEntity.typeSync(x, followLinks: false));
Expect.equals(x, new Link(y).targetSync());
// Test Junction pointing to a missing directory.
@@ -38,41 +36,38 @@ testJunctionTypeDelete() {
Expect.isFalse(FileSystemEntity.isLinkSync(x));
Expect.isFalse(FileSystemEntity.isDirectorySync(y));
Expect.isFalse(FileSystemEntity.isDirectorySync(x));
+ Expect.equals(FileSystemEntityType.LINK, FileSystemEntity.typeSync(y));
+ Expect.equals(FileSystemEntityType.NOT_FOUND, FileSystemEntity.typeSync(x));
Expect.equals(FileSystemEntityType.LINK,
- FileSystemEntity.typeSync(y));
- Expect.equals(FileSystemEntityType.NOT_FOUND,
- FileSystemEntity.typeSync(x));
- Expect.equals(FileSystemEntityType.LINK,
- FileSystemEntity.typeSync(y, followLinks: false));
+ FileSystemEntity.typeSync(y, followLinks: false));
Expect.equals(FileSystemEntityType.NOT_FOUND,
- FileSystemEntity.typeSync(x, followLinks: false));
+ FileSystemEntity.typeSync(x, followLinks: false));
Expect.equals(x, new Link(y).targetSync());
// Delete Junction pointing to a missing directory.
new Link(y).deleteSync();
Expect.isFalse(FileSystemEntity.isLinkSync(y));
- Expect.equals(FileSystemEntityType.NOT_FOUND,
- FileSystemEntity.typeSync(y));
+ Expect.equals(FileSystemEntityType.NOT_FOUND, FileSystemEntity.typeSync(y));
Expect.throws(() => new Link(y).targetSync());
new Directory(x).createSync();
new Link(y).create(x).then((_) {
Expect.equals(FileSystemEntityType.LINK,
- FileSystemEntity.typeSync(y, followLinks: false));
+ FileSystemEntity.typeSync(y, followLinks: false));
Expect.equals(FileSystemEntityType.DIRECTORY,
- FileSystemEntity.typeSync(x, followLinks: false));
+ FileSystemEntity.typeSync(x, followLinks: false));
Expect.equals(x, new Link(y).targetSync());
// Delete Junction pointing to an existing directory.
new Directory(y).deleteSync();
+ Expect.equals(
+ FileSystemEntityType.NOT_FOUND, FileSystemEntity.typeSync(y));
Expect.equals(FileSystemEntityType.NOT_FOUND,
- FileSystemEntity.typeSync(y));
- Expect.equals(FileSystemEntityType.NOT_FOUND,
- FileSystemEntity.typeSync(y, followLinks: false));
+ FileSystemEntity.typeSync(y, followLinks: false));
+ Expect.equals(
+ FileSystemEntityType.DIRECTORY, FileSystemEntity.typeSync(x));
Expect.equals(FileSystemEntityType.DIRECTORY,
- FileSystemEntity.typeSync(x));
- Expect.equals(FileSystemEntityType.DIRECTORY,
- FileSystemEntity.typeSync(x, followLinks: false));
+ FileSystemEntity.typeSync(x, followLinks: false));
Expect.throws(() => new Link(y).targetSync());
temp.deleteSync(recursive: true);
@@ -80,7 +75,6 @@ testJunctionTypeDelete() {
});
}
-
main() {
// Links on other platforms are tested by file_system_[async_]links_test.
if (Platform.operatingSystem == 'windows') {

Powered by Google App Engine
This is Rietveld 408576698