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

Side by Side Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_apitest.cc

Issue 11368160: Added combined test for Syncable File System to write file and then get that usage gets updated. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated Created 8 years, 1 month 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
OLDNEW
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 "base/file_util.h" 5 #include "base/file_util.h"
6 #include "base/path_service.h" 6 #include "base/path_service.h"
7 #include "chrome/browser/extensions/extension_apitest.h" 7 #include "chrome/browser/extensions/extension_apitest.h"
8 #include "chrome/common/chrome_version_info.h" 8 #include "chrome/common/chrome_version_info.h"
9 #include "chrome/common/extensions/features/feature.h" 9 #include "chrome/common/extensions/features/feature.h"
10 #include "webkit/quota/quota_manager.h" 10 #include "webkit/quota/quota_manager.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, GetUsageAndQuota) { 48 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, GetUsageAndQuota) {
49 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/get_usage_and_quota")) 49 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/get_usage_and_quota"))
50 << message_; 50 << message_;
51 } 51 }
52 52
53 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, RequestFileSystem) { 53 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, RequestFileSystem) {
54 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/request_file_system")) 54 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/request_file_system"))
55 << message_; 55 << message_;
56 } 56 }
57 57
58 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, WriteFileThenGetUsage) {
59 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/write_file_then_get_usage"))
60 << message_;
61 }
62
58 } // namespace chrome 63 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698