// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/base/port_range.h" #include <sstream> #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" namespace remoting { TEST(PortRange, ParseEmpty) { … } TEST(PortRange, ParseValid) { … } TEST(PortRange, ParseInvalid) { … } TEST(PortRange, Output) { … } TEST(PortRange, Equality) { … } } // namespace remoting