public void IsValidPortTestF(
            [Values("65538", "-1")]
            string port,
            [Values(false)]
            bool expected)
        {
            var actual = IPAddressValidator.IsValidPort(port);

            Assert.AreEqual(expected, actual);
        }
        public void IsValidPortTestT(
            [Values("65535", "0")]
            string port,
            [Values(true)]
            bool expected)
        {
            var actual = IPAddressValidator.IsValidPort(port);

            Assert.AreEqual(expected, actual);
        }