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

Unified Diff: sync/test/fake_server/fake_server_verifier.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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
Index: sync/test/fake_server/fake_server_verifier.h
diff --git a/sync/test/fake_server/fake_server_verifier.h b/sync/test/fake_server/fake_server_verifier.h
deleted file mode 100644
index 9c7999450e2fb4d73c99fe3774e189e3463b8fdf..0000000000000000000000000000000000000000
--- a/sync/test/fake_server/fake_server_verifier.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_
-#define SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_
-
-#include <stddef.h>
-
-#include <string>
-
-#include "base/macros.h"
-#include "base/values.h"
-#include "sync/internal_api/public/base/model_type.h"
-#include "sync/test/fake_server/sessions_hierarchy.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace fake_server {
-
-class FakeServer;
-
-// Provides methods to verify the state of a FakeServer. The main use case of
-// this class is verifying committed data so that it does not have to be synced
-// down to another test client for verification. These methods are not present
-// on FakeServer so that its interface is not polluted.
-class FakeServerVerifier {
- public:
- // Creates a FakeServerVerifier for |fake_server|. This class does not take
- // ownership of |fake_server|.
- explicit FakeServerVerifier(FakeServer* fake_server);
- virtual ~FakeServerVerifier();
-
- // Returns a successful result if there are |expected_count| entities with the
- // given |model_type|. A failure is returned if the count does not match or
- // verification can't take place.
- testing::AssertionResult VerifyEntityCountByType(
- size_t expected_count,
- syncer::ModelType model_type) const;
-
- // Returns a successful result if there are |expected_count| entities with the
- // given |model_type| and |name|. A failure is returned if the count does not
- // match or verification can't take place.
- testing::AssertionResult VerifyEntityCountByTypeAndName(
- size_t expected_count,
- syncer::ModelType model_type,
- const std::string& name) const;
-
- // Returns a successful result if |expected_sessions| matches the sessions
- // hierarchy present on the server. This method only supports one session.
- testing::AssertionResult VerifySessions(
- const SessionsHierarchy& expected_sessions);
-
- private:
- FakeServer* const fake_server_;
-
- DISALLOW_COPY_AND_ASSIGN(FakeServerVerifier);
-};
-
-} // namespace fake_server
-
-#endif // SYNC_TEST_FAKE_SERVER_FAKE_SERVER_VERIFIER_H_
« no previous file with comments | « sync/test/fake_server/fake_server_network_resources.cc ('k') | sync/test/fake_server/fake_server_verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698