1 // Copyright 2014 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 "base/macros.h"
6 #include "chromecast/browser/test/chromecast_browser_test.h"
8 #include "url/url_constants.h"
10 namespace chromecast
{
13 class ChromecastShellBrowserTest
: public ChromecastBrowserTest
{
15 ChromecastShellBrowserTest() : url_(url::kAboutBlankURL
) {}
17 void SetUpOnMainThread() override
{
19 NavigateToURL(web_contents(), url_
);
25 DISALLOW_COPY_AND_ASSIGN(ChromecastShellBrowserTest
);
28 IN_PROC_BROWSER_TEST_F(ChromecastShellBrowserTest
, EmptyTest
) {
29 // Run an entire browser lifecycle to ensure nothing breaks.
30 // TODO(gunsch): Remove this test case once there are actual assertions to
31 // test in a ChromecastBrowserTest instance.
36 } // namespace chromecast