OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/drive/drive_system_service.h" | 5 #include "chrome/browser/chromeos/drive/drive_system_service.h" |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "chrome/browser/chromeos/drive/mock_drive_file_system.h" | 8 #include "chrome/browser/chromeos/drive/mock_drive_file_system.h" |
9 #include "chrome/browser/chromeos/drive/test_util.h" | 9 #include "chrome/browser/chromeos/drive/test_util.h" |
10 #include "chrome/browser/google_apis/dummy_drive_service.h" | 10 #include "chrome/browser/google_apis/dummy_drive_service.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 } | 32 } |
33 | 33 |
34 virtual void TearDown() OVERRIDE { | 34 virtual void TearDown() OVERRIDE { |
35 delete system_service_; | 35 delete system_service_; |
36 file_system_ = NULL; | 36 file_system_ = NULL; |
37 google_apis::test_util::RunBlockingPoolTask(); | 37 google_apis::test_util::RunBlockingPoolTask(); |
38 profile_.reset(); | 38 profile_.reset(); |
39 } | 39 } |
40 | 40 |
41 protected: | 41 protected: |
42 MessageLoopForUI message_loop_; | 42 base::MessageLoopForUI message_loop_; |
43 // The order of the test threads is important, do not change the order. | 43 // The order of the test threads is important, do not change the order. |
44 // See also content/browser/browser_thread_impl.cc. | 44 // See also content/browser/browser_thread_impl.cc. |
45 content::TestBrowserThread ui_thread_; | 45 content::TestBrowserThread ui_thread_; |
46 scoped_ptr<TestingProfile> profile_; | 46 scoped_ptr<TestingProfile> profile_; |
47 | 47 |
48 MockDriveFileSystem* file_system_; | 48 MockDriveFileSystem* file_system_; |
49 DriveSystemService* system_service_; | 49 DriveSystemService* system_service_; |
50 }; | 50 }; |
51 | 51 |
52 TEST_F(DriveSystemServiceTest, InitializeAndShutdown) { | 52 TEST_F(DriveSystemServiceTest, InitializeAndShutdown) { |
53 system_service_->Initialize(); | 53 system_service_->Initialize(); |
54 google_apis::test_util::RunBlockingPoolTask(); | 54 google_apis::test_util::RunBlockingPoolTask(); |
55 system_service_->Shutdown(); | 55 system_service_->Shutdown(); |
56 } | 56 } |
57 | 57 |
58 } // namespace drive | 58 } // namespace drive |
OLD | NEW |