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

Unified Diff: apps/shell/browser/shell_browsertest.cc

Issue 224723022: Add the first app_shell_browsertest test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: temp dep Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « apps/shell/browser/shell_browser_main_parts.cc ('k') | apps/shell/common/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/shell/browser/shell_browsertest.cc
diff --git a/apps/shell/browser/shell_browsertest.cc b/apps/shell/browser/shell_browsertest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..108f40d256b008a4206dcd5faee982c0268cf889
--- /dev/null
+++ b/apps/shell/browser/shell_browsertest.cc
@@ -0,0 +1,32 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "apps/shell/test/shell_test.h"
+
+#include "base/files/file_path.h"
+#include "base/logging.h"
+#include "base/path_service.h"
+#include "chrome/browser/chrome_notification_types.h"
+#include "content/public/browser/notification_service.h"
+#include "content/public/test/test_utils.h"
+#include "extensions/common/extension_paths.h"
+
+namespace apps {
+
+// Test that we can open an app window and wait for it to load.
+IN_PROC_BROWSER_TEST_F(AppShellTest, Basic) {
+ base::FilePath test_data_dir;
+
+ content::WindowedNotificationObserver test_pass_observer(
+ chrome::NOTIFICATION_EXTENSION_TEST_PASSED,
+ content::NotificationService::AllSources());
+
+ PathService::Get(extensions::DIR_TEST_DATA, &test_data_dir);
+ test_data_dir = test_data_dir.AppendASCII("platform_app");
+ LoadAndLaunchApp(test_data_dir);
+
+ test_pass_observer.Wait();
+}
+
+} // namespace apps
« no previous file with comments | « apps/shell/browser/shell_browser_main_parts.cc ('k') | apps/shell/common/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698