Renci.SshNet.Tests.ForwardedPortStatusTest_Starting.Equals_ShouldReturnFalseWhenOtherIsStopped C# (CSharp) Method

Equals_ShouldReturnFalseWhenOtherIsStopped() private method

private Equals_ShouldReturnFalseWhenOtherIsStopped ( ) : void
return void
        public void Equals_ShouldReturnFalseWhenOtherIsStopped()
        {
            var other = ForwardedPortStatus.Stopped;

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

            Assert.IsFalse(actual);
        }