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

InEqualityOperator_ShouldReturnTrueWhenRightIsNull() private method

        public void InEqualityOperator_ShouldReturnTrueWhenRightIsNull()
        {
            var left = ForwardedPortStatus.Stopping;
            const ForwardedPortStatus right = null;

            var actual = left != right;

            Assert.IsTrue(actual);
        }