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

Unified Diff: runtime/bin/directory_test.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 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 | « runtime/bin/directory_macos.cc ('k') | runtime/bin/directory_unsupported.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory_test.cc
diff --git a/runtime/bin/directory_test.cc b/runtime/bin/directory_test.cc
index de9970e498c2fa99c93708ec4f44ad0b9111a7ce..40a91f0eca0fa81ebadbf3ab3e1fd40ab4139df8 100644
--- a/runtime/bin/directory_test.cc
+++ b/runtime/bin/directory_test.cc
@@ -17,13 +17,11 @@ VM_UNIT_TEST_CASE(DirectoryCurrentNoScope) {
free(current_dir);
}
-
TEST_CASE(DirectoryCurrent) {
const char* current = dart::bin::Directory::Current();
EXPECT_NOTNULL(current);
}
-
TEST_CASE(DirectoryExists) {
const char* current = dart::bin::Directory::Current();
EXPECT_NOTNULL(current);
@@ -32,13 +30,11 @@ TEST_CASE(DirectoryExists) {
EXPECT_EQ(dart::bin::Directory::EXISTS, r);
}
-
TEST_CASE(DirectorySystemTemp) {
const char* system_temp = dart::bin::Directory::SystemTemp();
EXPECT_NOTNULL(system_temp);
}
-
TEST_CASE(DirectorySystemTempExists) {
const char* system_temp = dart::bin::Directory::SystemTemp();
EXPECT_NOTNULL(system_temp);
@@ -48,7 +44,6 @@ TEST_CASE(DirectorySystemTempExists) {
EXPECT_EQ(dart::bin::Directory::EXISTS, r);
}
-
TEST_CASE(DirectoryCreateTemp) {
const char* kTempPrefix = "test_prefix";
const char* system_temp = dart::bin::Directory::SystemTemp();
@@ -64,7 +59,6 @@ TEST_CASE(DirectoryCreateTemp) {
EXPECT(dart::bin::Directory::Delete(temp_dir, false));
}
-
TEST_CASE(DirectorySetCurrent) {
const char* current = dart::bin::Directory::Current();
EXPECT_NOTNULL(current);
@@ -82,7 +76,6 @@ TEST_CASE(DirectorySetCurrent) {
EXPECT(dart::bin::Directory::SetCurrent(current));
}
-
TEST_CASE(DirectoryCreateDelete) {
const char* kTempDirName = "create_delete_test_name";
@@ -107,7 +100,6 @@ TEST_CASE(DirectoryCreateDelete) {
delete[] name;
}
-
TEST_CASE(DirectoryRename) {
const char* kTempDirName = "rename_test_name";
« no previous file with comments | « runtime/bin/directory_macos.cc ('k') | runtime/bin/directory_unsupported.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698