chromium/components/services/app_service/public/cpp/app_registry_cache_wrapper_unittest.cc

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

#include <vector>

#include "base/scoped_observation.h"
#include "components/account_id/account_id.h"
#include "components/services/app_service/public/cpp/app_registry_cache.h"
#include "components/services/app_service/public/cpp/app_registry_cache_wrapper.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace apps {

class AppRegistryCacheWrapperTest : public testing::Test,
                                    public AppRegistryCache::Observer {};

TEST_F(AppRegistryCacheWrapperTest, OneAccount) {}

TEST_F(AppRegistryCacheWrapperTest, MultipleAccounts) {}

TEST_F(AppRegistryCacheWrapperTest, RegistryCacheRemovedIfFreed) {}

}  // namespace apps