chromium/components/download/database/download_db_conversions_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/download/database/download_db_conversions.h"

#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "components/download/public/common/download_features.h"
#include "components/download/public/common/download_url_parameters.h"
#include "services/network/public/mojom/fetch_api.mojom-shared.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace download {

namespace {

InProgressInfo CreateInProgressInfo() {}

DownloadInfo CreateDownloadInfo() {}

}  // namespace

class DownloadDBConversionsTest : public testing::Test,
                                  public DownloadDBConversions {};

TEST_F(DownloadDBConversionsTest, DownloadEntry) {}

TEST_F(DownloadDBConversionsTest, DownloadEntries) {}

TEST_F(DownloadDBConversionsTest, DownloadSource) {}

TEST_F(DownloadDBConversionsTest, HttpRequestHeaders) {}

TEST_F(DownloadDBConversionsTest, InProgressInfo) {}

TEST_F(DownloadDBConversionsTest, UkmInfo) {}

TEST_F(DownloadDBConversionsTest, DownloadInfo) {}

TEST_F(DownloadDBConversionsTest, DownloadDBEntry) {}

}  // namespace download