chromium/components/feature_engagement/internal/availability_model_impl_unittest.cc

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

#include "components/feature_engagement/internal/availability_model_impl.h"

#include <memory>
#include <optional>
#include <utility>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "components/feature_engagement/internal/persistent_availability_store.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace feature_engagement {

namespace {

BASE_FEATURE();
BASE_FEATURE();
BASE_FEATURE();
BASE_FEATURE();

class AvailabilityModelImplTest : public testing::Test {};

}  // namespace

TEST_F(AvailabilityModelImplTest, InitializationSuccess) {}

TEST_F(AvailabilityModelImplTest, InitializationFailed) {}

TEST_F(AvailabilityModelImplTest, SuccessfullyLoadThreeFeatures) {}

TEST_F(AvailabilityModelImplTest, FailToLoadThreeFeatures) {}

}  // namespace feature_engagement