// Copyright 2016 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/nqe/effective_connection_type.h" #include <optional> #include <string> #include "testing/gtest/include/gtest/gtest.h" namespace net { namespace { // Tests that the effective connection type is converted correctly to a // descriptive string name, and vice-versa. TEST(EffectiveConnectionTypeTest, NameConnectionTypeConversion) { … } // Tests that the Slow 2G effective connection type is converted correctly to a // descriptive string name, and vice-versa. TEST(EffectiveConnectionTypeTest, Slow2GTypeConversion) { … } } // namespace } // namespace net