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/logging.h"
6#include "content/public/browser/notification_service.h"
7#include "content/public/test/test_utils.h"
8#include "extensions/browser/notification_types.h"
9#include "extensions/shell/test/shell_apitest.h"
10
11namespace extensions {
12
13// Test that we can open an app window and wait for it to load.
14IN_PROC_BROWSER_TEST_F(ShellApiTest, Basic) {
15  ASSERT_TRUE(RunAppTest("platform_app")) << message_;
16}
17
18}  // namespace extensions
19