OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #include "content/test/content_browser_test.h" |
| 6 |
| 7 #include "content/test/content_browser_test_utils.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 |
| 10 namespace content { |
| 11 |
| 12 IN_PROC_BROWSER_TEST_F(ContentBrowserTest, Basic) { |
| 13 GURL url = GetTestUrl(("."), "simple_page.html"); |
| 14 NavigateToURL(shell(), url); |
| 15 |
| 16 // TODO(jam): move TitleWatcher in a followup change to check title. |
| 17 } |
| 18 |
| 19 } // namespace content |
OLD | NEW |