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

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: 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
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..7eae9e87610f20d6ad31f112e9a915c33adadf6f
--- /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/app_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 {
+
+IN_PROC_BROWSER_TEST_F(AppShellTest, Basic) {
James Cook 2014/04/08 16:03:49 Please comment what the test is testing.
+ 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");
+ LOG(INFO) << "Loading path: " << test_data_dir.value();
James Cook 2014/04/08 16:03:49 Delete this line? I don't think we like adding lo
Yoyo Zhou 2014/04/08 21:55:21 Done.
+ LoadAndLaunchApp(test_data_dir);
+
+ test_pass_observer.Wait();
+}
+
+} // namespace apps

Powered by Google App Engine
This is Rietveld 408576698