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

Side by Side Diff: chromecast/shell/browser/test/chromecast_shell_browser_test.cc

Issue 518773003: Chromecast: end-to-end browser test based on content::BrowserTest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cast-browser-process
Patch Set: Created 6 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "base/macros.h"
6 #include "chromecast/shell/browser/test/chromecast_browser_test.h"
7 #include "url/gurl.h"
8
9 namespace chromecast {
10 namespace shell {
11
12 class ChromecastShellBrowserTest : public ChromecastBrowserTest {
13 public:
14 ChromecastShellBrowserTest() : url_("about:blank") { }
15
16 virtual void SetUpOnMainThread() OVERRIDE {
17 CreateBrowser();
18 NavigateToURL(web_contents(), url_);
19 }
20
21 private:
22 GURL url_;
byungchul 2014/08/30 00:19:00 const?
gunsch 2014/08/30 15:28:43 Done.
23
24 DISALLOW_COPY_AND_ASSIGN(ChromecastShellBrowserTest);
25 };
26
27 IN_PROC_BROWSER_TEST_F(ChromecastShellBrowserTest, EmptyTest) {
28 // Run an entire browser lifecycle to ensure nothing breaks.
29 // This test case can be removed once actual assertions are being tested.
30 EXPECT_TRUE(true);
31 }
32
33 } // namespace shell
34 } // namespace chromecast
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698