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

InEqualityOperator_ShouldReturnTrueWhenLeftIsNull() private method

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

            var actual = left != right;

            Assert.IsTrue(actual);
        }