chromium/net/quic/network_connection_unittest.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/network_connection.h"

#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "net/base/mock_network_change_notifier.h"
#include "net/test/test_with_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace net::test {

constexpr auto CONNECTION_3G =;
constexpr auto CONNECTION_2G =;
constexpr auto CONNECTION_ETHERNET =;
constexpr auto CONNECTION_WIFI =;

// TestWithTaskEnvironment needed to instantiate a
// net::NetworkChangeNotifier::NetworkChangeNotifier via
// ScopedMockNetworkChangeNotifier.
class NetworkConnectionTest : public TestWithTaskEnvironment {};

TEST_F(NetworkConnectionTest, Connection2G) {}

TEST_F(NetworkConnectionTest, Connection3G) {}

TEST_F(NetworkConnectionTest, ConnectionEthnernet) {}

TEST_F(NetworkConnectionTest, ConnectionWifi) {}

TEST_F(NetworkConnectionTest, ConnectionChange) {}

}  // namespace net::test