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

Unified Diff: chrome/test/sync/engine/test_user_share.h

Issue 7828055: Move sync test code out of chrome/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « chrome/test/sync/engine/test_syncable_utils.cc ('k') | chrome/test/sync/engine/test_user_share.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/sync/engine/test_user_share.h
===================================================================
--- chrome/test/sync/engine/test_user_share.h (revision 99413)
+++ chrome/test/sync/engine/test_user_share.h (working copy)
@@ -1,67 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-//
-// A handy class that takes care of setting up and destroying a
-// sync_api::UserShare instance for unit tests that require one.
-//
-// The expected usage is to make this a component of your test fixture:
-//
-// class AwesomenessTest : public testing::Test {
-// public:
-// virtual void SetUp() {
-// test_user_share_.SetUp();
-// }
-// virtual void TearDown() {
-// test_user_share_.TearDown();
-// }
-// protected:
-// TestUserShare test_user_share_;
-// };
-//
-// Then, in your tests:
-//
-// TEST_F(AwesomenessTest, IsMaximal) {
-// sync_api::ReadTransaction trans(test_user_share_.user_share());
-// ...
-// }
-//
-
-#ifndef CHROME_TEST_SYNC_ENGINE_TEST_USER_SHARE_H_
-#define CHROME_TEST_SYNC_ENGINE_TEST_USER_SHARE_H_
-#pragma once
-
-#include "base/basictypes.h"
-#include "chrome/browser/sync/internal_api/user_share.h"
-#include "chrome/test/sync/engine/test_directory_setter_upper.h"
-
-namespace browser_sync {
-
-class TestUserShare {
- public:
- TestUserShare();
- ~TestUserShare();
-
- // Sets up the UserShare instance. Clears any existing database
- // backing files that might exist on disk.
- void SetUp();
-
- // Undo everything done by SetUp(): closes the UserShare and deletes
- // the backing files. Before closing the directory, this will run
- // the directory invariant checks and perform the SaveChanges action
- // on the user share's directory.
- void TearDown();
-
- // Non-NULL iff called between a call to SetUp() and TearDown().
- sync_api::UserShare* user_share();
-
- private:
- TestDirectorySetterUpper setter_upper_;
- sync_api::UserShare user_share_;
-
- DISALLOW_COPY_AND_ASSIGN(TestUserShare);
-};
-
-} // namespace browser_sync
-
-#endif // CHROME_TEST_SYNC_ENGINE_TEST_USER_SHARE_H_
« no previous file with comments | « chrome/test/sync/engine/test_syncable_utils.cc ('k') | chrome/test/sync/engine/test_user_share.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698