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

Side by Side Diff: chrome/browser/sync/test/integration/single_client_e2e_test.cc

Issue 772513004: Add new E2E sync multi profiles tests. This should not affect any existing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 6 years 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
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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/sync/test/integration/sync_test.h" 5 #include "chrome/browser/sync/test/integration/sync_test.h"
6 6
7 class SingleClientE2ETest : public SyncTest { 7 class SingleClientE2ETest : public SyncTest {
8 public: 8 public:
9 SingleClientE2ETest() : SyncTest(SINGLE_CLIENT) {} 9 SingleClientE2ETest() : SyncTest(SINGLE_CLIENT) {}
10 ~SingleClientE2ETest() override {} 10 ~SingleClientE2ETest() override {}
11 virtual bool TestUsesSelfNotifications() override { return false; } 11 virtual bool TestUsesSelfNotifications() override { return false; }
12 12
13 private: 13 private:
14 DISALLOW_COPY_AND_ASSIGN(SingleClientE2ETest); 14 DISALLOW_COPY_AND_ASSIGN(SingleClientE2ETest);
15 }; 15 };
16 16
17 // http://crbug.com/431366
17 IN_PROC_BROWSER_TEST_F(SingleClientE2ETest, DISABLED_SanitySetup) { 18 IN_PROC_BROWSER_TEST_F(SingleClientE2ETest, DISABLED_SanitySetup) {
18 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; 19 ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
19 // TODO(shadi): Add AwaitCommitActivityCompletion() once GCM servers are added 20 // TODO(shadi): Add AwaitCommitActivityCompletion() once GCM servers are added
20 // to E2E setup. 21 // to E2E setup.
21 // ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0)))); 22 // ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0))));
22 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698