chromium/chrome/browser/status_icons/status_tray_unittest.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/status_icons/status_tray.h"

#include "base/compiler_specific.h"
#include "chrome/browser/status_icons/status_icon.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/image/image_unittest_util.h"
#include "ui/message_center/public/cpp/notifier_id.h"

namespace {

class MockStatusIcon : public StatusIcon {};

class TestStatusTray : public StatusTray {};

StatusIcon* CreateStatusIcon(StatusTray* tray) {}

}  // namespace

TEST(StatusTrayTest, Create) {}

// Make sure that removing an icon removes it from the list.
TEST(StatusTrayTest, CreateRemove) {}