Refactor management of overview window copy lifetime into a separate class.
[chromium-blink-merge.git] / content / test / content_browser_test_test.cc
blob56811404c517c156ee556e9e4b35aacaaa4d8693
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/test/content_browser_test.h"
7 #include "base/command_line.h"
8 #include "base/strings/utf_string_conversions.h"
9 #include "content/public/common/content_switches.h"
10 #include "content/public/test/browser_test_utils.h"
11 #include "content/shell/browser/shell.h"
12 #include "content/test/content_browser_test_utils.h"
13 #include "testing/gtest/include/gtest/gtest.h"
15 namespace content {
17 class ContentBrowserTestSanityTest : public ContentBrowserTest {
18 public:
19 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
20 const testing::TestInfo* const test_info =
21 testing::UnitTest::GetInstance()->current_test_info();
22 if (std::string(test_info->name()) == "SingleProcess")
23 command_line->AppendSwitch(switches::kSingleProcess);
26 void Test() {
27 GURL url = GetTestUrl(".", "simple_page.html");
29 string16 expected_title(ASCIIToUTF16("OK"));
30 TitleWatcher title_watcher(shell()->web_contents(), expected_title);
31 NavigateToURL(shell(), url);
32 string16 title = title_watcher.WaitAndGetTitle();
33 EXPECT_EQ(expected_title, title);
37 IN_PROC_BROWSER_TEST_F(ContentBrowserTestSanityTest, Basic) {
38 Test();
41 IN_PROC_BROWSER_TEST_F(ContentBrowserTestSanityTest, SingleProcess) {
42 Test();
45 } // namespace content