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

EqualityOperator_ShouldReturnFalseWhenRightIsNull() private method

private EqualityOperator_ShouldReturnFalseWhenRightIsNull ( ) : void
return void
        public void EqualityOperator_ShouldReturnFalseWhenRightIsNull()
        {
            var left = ForwardedPortStatus.Stopping;
            const ForwardedPortStatus right = null;

            var actual = left == right;

            Assert.IsFalse(actual);
        }