[InlineData("*", "::")]          // "::" is IPAddress.IPv6Any
        public void CorrectIPEndpointsAreCreated(string host, string expectedAddress)
        {
            var endpoint = UvTcpHandle.CreateIPEndpoint(ServerAddress.FromUrl($"http://{host}:5000/"));

            Assert.NotNull(endpoint);
            Assert.Equal(IPAddress.Parse(expectedAddress), endpoint.Address);
            Assert.Equal(5000, endpoint.Port);
        }
        public void CorrectIPEndpointsAreCreated(string host, string expectedAddress)
        {
            // "0.0.0.0" is IPAddress.Any
            var endpoint = UvTcpHandle.CreateIPEndpoint(host, 5000);

            Assert.NotNull(endpoint);
            Assert.Equal(IPAddress.Parse(expectedAddress), endpoint.Address);
            Assert.Equal(5000, endpoint.Port);
        }