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

Equals_ShouldReturnFalseWhenOtherIsNotInstanceOfForwardedPortStatus() private method

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

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

            Assert.IsFalse(actual);
        }