chromium/net/quic/properties_based_quic_server_info_test.cc

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

#include "net/quic/properties_based_quic_server_info.h"

#include <string>

#include "net/base/host_port_pair.h"
#include "net/base/net_errors.h"
#include "net/base/privacy_mode.h"
#include "net/http/http_server_properties.h"
#include "net/test/gtest_util.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_server_id.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace net::test {

namespace {
const char kServerConfigA[] =;
const char kSourceAddressTokenA[] =;
const char kCertSCTA[] =;
const char kChloHashA[] =;
const char kServerConfigSigA[] =;
const char kCertA[] =;
const char kCertB[] =;
}  // namespace

class PropertiesBasedQuicServerInfoTest : public ::testing::Test {};

// Test persisting, reading and verifying and then updating and verifing.
TEST_F(PropertiesBasedQuicServerInfoTest, Update) {}

}  // namespace net::test