chromium/net/dns/public/dns_over_https_config_unittest.cc

// Copyright 2022 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/dns/public/dns_over_https_config.h"

#include "base/values.h"
#include "net/dns/public/dns_over_https_server_config.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace net {
namespace {

const DnsOverHttpsServerConfig kServerConfig1 =;
const DnsOverHttpsServerConfig kServerConfig2 =;

TEST(DnsOverHttpsConfigTest, SingleValue) {}

TEST(DnsOverHttpsConfigTest, MultiValue) {}

TEST(DnsOverHttpsConfigTest, Equal) {}

TEST(DnsOverHttpsConfigTest, NotEqual) {}

TEST(DnsOverHttpsConfigTest, FromStringSingleValue) {}

TEST(DnsOverHttpsConfigTest, FromStringMultiValue) {}

TEST(DnsOverHttpsConfigTest, FromStringExtraWhitespace) {}

TEST(DnsOverHttpsConfigTest, FromStringEmpty) {}

TEST(DnsOverHttpsConfigTest, FromStringAllInvalid) {}

TEST(DnsOverHttpsConfigTest, FromStringSomeInvalid) {}

TEST(DnsOverHttpsConfigTest, Json) {}

TEST(DnsOverHttpsConfigTest, JsonWithUnknownKey) {}

TEST(DnsOverHttpsConfigTest, BadJson) {}

TEST(DnsOverHttpsConfigTest, JsonLax) {}

}  // namespace
}  // namespace net