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

Equals_ShouldReturnTrueWhenOtherIsStopping() private method

private Equals_ShouldReturnTrueWhenOtherIsStopping ( ) : void
return void
        public void Equals_ShouldReturnTrueWhenOtherIsStopping()
        {
            var other = ForwardedPortStatus.Stopping;

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

            Assert.IsTrue(actual);
        }