chromium/components/offline_pages/core/request_header/offline_page_header_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/request_header/offline_page_header.h"

#include "base/base64.h"
#include "base/test/scoped_feature_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/url_features.h"

namespace offline_pages {

namespace {
std::string Base64EncodeString(const std::string value) {}
}  // namespace

class OfflinePageHeaderTest : public testing::Test {};

// Non-special URLs behavior is affected by the
// StandardCompliantNonSpecialSchemeURLParsing feature.
// See https://crbug.com/40063064 for details.
class OfflinePageHeaderParamTest : public OfflinePageHeaderTest,
                                   public ::testing::WithParamInterface<bool> {};

TEST_P(OfflinePageHeaderParamTest, Parse) {}

TEST_F(OfflinePageHeaderTest, ToEmptyString) {}

TEST_P(OfflinePageHeaderParamTest, ToString) {}

INSTANTIATE_TEST_SUITE_P();

}  // namespace offline_pages