chromium/services/network/dns_config_change_manager_unittest.cc

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

#include "services/network/dns_config_change_manager.h"

#include <climits>
#include <utility>

#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace network {
namespace {

class TestDnsConfigChangeManagerClient
    : public mojom::DnsConfigChangeManagerClient {};

class DnsConfigChangeManagerTest : public testing::Test {};

TEST_F(DnsConfigChangeManagerTest, Notification) {}

TEST_F(DnsConfigChangeManagerTest, MultipleNotification) {}

TEST_F(DnsConfigChangeManagerTest, MultipleClients) {}

}  // namespace
}  // namespace network