chromium/chrome/browser/profiles/profile_list_desktop_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/profiles/profile_list_desktop.h"

#include <memory>
#include <string>
#include <vector>

#include "base/command_line.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/browser/profiles/avatar_menu_observer.h"
#include "chrome/browser/profiles/profile_attributes_entry.h"
#include "chrome/browser/profiles/profile_attributes_init_params.h"
#include "chrome/browser/profiles/profile_attributes_storage.h"
#include "chrome/browser/profiles/profiles_state.h"
#include "chrome/browser/signin/identity_test_environment_profile_adaptor.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "components/account_id/account_id.h"
#include "components/sync_preferences/pref_service_syncable.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"

ASCIIToUTF16;

namespace {

class MockObserver : public AvatarMenuObserver {};

class ProfileListDesktopTest : public testing::Test {};

TEST_F(ProfileListDesktopTest, InitialCreation) {}

TEST_F(ProfileListDesktopTest, NoOmittedProfiles) {}

TEST_F(ProfileListDesktopTest, GuestProfile) {}

TEST_F(ProfileListDesktopTest, WithOmittedProfiles) {}

TEST_F(ProfileListDesktopTest, ActiveItem) {}

TEST_F(ProfileListDesktopTest, ModifyingNameResortsCorrectly) {}

TEST_F(ProfileListDesktopTest, ChangeOnNotify) {}

}  // namespace