| 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 // A handy class that takes care of setting up and destroying a | 5 // A handy class that takes care of setting up and destroying a |
| 6 // syncable::Directory instance for unit tests that require one. | 6 // syncable::Directory instance for unit tests that require one. |
| 7 // | 7 // |
| 8 // The expected usage is to make this a component of your test fixture: | 8 // The expected usage is to make this a component of your test fixture: |
| 9 // | 9 // |
| 10 // class AwesomenessTest : public testing::Test { | 10 // class AwesomenessTest : public testing::Test { |
| 11 // public: | 11 // public: |
| 12 // virtual void SetUp() { | 12 // virtual void SetUp() { |
| 13 // metadb_.SetUp(); | 13 // metadb_.SetUp(); |
| 14 // } | 14 // } |
| 15 // virtual void TearDown() { | 15 // virtual void TearDown() { |
| 16 // metadb_.TearDown(); | 16 // metadb_.TearDown(); |
| 17 // } | 17 // } |
| 18 // protected: | 18 // protected: |
| 19 // TestDirectorySetterUpper metadb_; | 19 // TestDirectorySetterUpper metadb_; |
| 20 // }; | 20 // }; |
| 21 // | 21 // |
| 22 // Then, in your tests, get at the directory like so: | 22 // Then, in your tests, get at the directory like so: |
| 23 // | 23 // |
| 24 // TEST_F(AwesomenessTest, IsMaximal) { | 24 // TEST_F(AwesomenessTest, IsMaximal) { |
| 25 // ... now use metadb_.directory() to get at syncable::Entry objects ... | 25 // ... now use metadb_.directory() to get at syncable::Entry objects ... |
| 26 // } | 26 // } |
| 27 // | 27 // |
| 28 | 28 |
| 29 #ifndef SYNC_TEST_ENGINE_TEST_DIRECTORY_SETTER_UPPER_H_ | 29 #ifndef COMPONENTS_SYNC_TEST_ENGINE_TEST_DIRECTORY_SETTER_UPPER_H_ |
| 30 #define SYNC_TEST_ENGINE_TEST_DIRECTORY_SETTER_UPPER_H_ | 30 #define COMPONENTS_SYNC_TEST_ENGINE_TEST_DIRECTORY_SETTER_UPPER_H_ |
| 31 | 31 |
| 32 #include <memory> | 32 #include <memory> |
| 33 #include <string> | 33 #include <string> |
| 34 | 34 |
| 35 #include "base/compiler_specific.h" | 35 #include "base/compiler_specific.h" |
| 36 #include "base/macros.h" | 36 #include "base/macros.h" |
| 37 #include "sync/test/fake_sync_encryption_handler.h" | 37 #include "components/sync/base/test_unrecoverable_error_handler.h" |
| 38 #include "sync/test/null_directory_change_delegate.h" | 38 #include "components/sync/test/fake_sync_encryption_handler.h" |
| 39 #include "sync/util/test_unrecoverable_error_handler.h" | 39 #include "components/sync/test/null_directory_change_delegate.h" |
| 40 #include "testing/gmock/include/gmock/gmock.h" | 40 #include "testing/gmock/include/gmock/gmock.h" |
| 41 | 41 |
| 42 namespace syncer { | 42 namespace syncer { |
| 43 | 43 |
| 44 namespace syncable { | 44 namespace syncable { |
| 45 class Directory; | 45 class Directory; |
| 46 class DirectoryBackingStore; | 46 class DirectoryBackingStore; |
| 47 class TestTransactionObserver; | 47 class TestTransactionObserver; |
| 48 } | 48 } |
| 49 | 49 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 FakeSyncEncryptionHandler encryption_handler_; | 83 FakeSyncEncryptionHandler encryption_handler_; |
| 84 std::unique_ptr<syncable::Directory> directory_; | 84 std::unique_ptr<syncable::Directory> directory_; |
| 85 std::string name_; | 85 std::string name_; |
| 86 | 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(TestDirectorySetterUpper); | 87 DISALLOW_COPY_AND_ASSIGN(TestDirectorySetterUpper); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace syncer | 90 } // namespace syncer |
| 91 | 91 |
| 92 #endif // SYNC_TEST_ENGINE_TEST_DIRECTORY_SETTER_UPPER_H_ | 92 #endif // COMPONENTS_SYNC_TEST_ENGINE_TEST_DIRECTORY_SETTER_UPPER_H_ |
| OLD | NEW |