Renci.SshNet.Tests.ForwardedPortStatusTest_Stopping.Equals_ShouldReturnFalseWhenOtherIsNotInstanceOfForwardedPortStatus C# (CSharp) Method

Equals_ShouldReturnFalseWhenOtherIsNotInstanceOfForwardedPortStatus() private method

        public void Equals_ShouldReturnFalseWhenOtherIsNotInstanceOfForwardedPortStatus()
        {
            var other = new object();

            var actual = ForwardedPortStatus.Stopping.Equals(other);

            Assert.IsFalse(actual);
        }