summaryrefslogtreecommitdiffstats
path: root/extensions/shell/test
diff options
context:
space:
mode:
authorlfg <lfg@chromium.org>2014-10-10 08:46:20 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-10 15:49:50 +0000
commit19132ce1ce87227133c1f1da5ca027a1bda9f5e2 (patch)
tree8c723e173332f9caf80871e34d34206ca06142d3 /extensions/shell/test
parentd2061d67be46908bb069329c9278a98ad39fc8cb (diff)
downloadchromium_src-19132ce1ce87227133c1f1da5ca027a1bda9f5e2.zip
chromium_src-19132ce1ce87227133c1f1da5ca027a1bda9f5e2.tar.gz
chromium_src-19132ce1ce87227133c1f1da5ca027a1bda9f5e2.tar.bz2
Adding webview tests to app_shell_browsertest.
This CL adds the following tests to app_shell_browsertest: - TestDialogAlert - TestDialogConfirm - TestDialogConfirmCancel - TestDialogConfirmDefaultCancel - TestDialogConfirmDefaultGCCancel - TestDialogPrompt Also, makes sure that we call content::BrowserTestBase::SetUpCommandLine(...) from AppShellTest. BUG=352293 Review URL: https://codereview.chromium.org/634403003 Cr-Commit-Position: refs/heads/master@{#299121}
Diffstat (limited to 'extensions/shell/test')
-rw-r--r--extensions/shell/test/shell_test.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions/shell/test/shell_test.cc b/extensions/shell/test/shell_test.cc
index 294fbaa..87e5430 100644
--- a/extensions/shell/test/shell_test.cc
+++ b/extensions/shell/test/shell_test.cc
@@ -23,6 +23,7 @@ AppShellTest::~AppShellTest() {
void AppShellTest::SetUp() {
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
command_line->AppendSwitchASCII(switches::kTestType, "appshell");
+ SetUpCommandLine(command_line);
content::BrowserTestBase::SetUp();
}