chromium/components/offline_pages/core/background/initialize_store_task_unittest.cc

// Copyright 2016 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/offline_pages/core/background/initialize_store_task.h"

#include <memory>

#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/test/test_mock_time_task_runner.h"
#include "components/offline_pages/core/background/request_queue_store.h"
#include "components/offline_pages/core/background/request_queue_task_test_base.h"
#include "components/offline_pages/core/background/test_request_queue_store.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace offline_pages {
namespace {

class InitializeStoreTaskTest : public RequestQueueTaskTestBase {};


TEST_F(InitializeStoreTaskTest, SuccessfulInitialization) {}

TEST_F(InitializeStoreTaskTest, SuccessfulReset) {}

TEST_F(InitializeStoreTaskTest, FailedReset) {}

}  // namespace
}  // namespace offline_pages