#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) { … }
}
}