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