summaryrefslogtreecommitdiffstats
path: root/athena/activity/activity_manager_unittest.cc
blob: f94b6e8fe3d218847419f6e533a8b599ded8db2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// 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 "athena/activity/public/activity_manager.h"

#include "athena/activity/public/activity_factory.h"
#include "athena/test/athena_test_base.h"

typedef athena::test::AthenaTestBase ActivityManagerTest;

TEST_F(ActivityManagerTest, Basic) {
  athena::ActivityManager::Get()->AddActivity(
      athena::ActivityFactory::Get()->CreateWebActivity(NULL, GURL()));
}