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

InEqualityOperator_ShouldReturnFalseWhenLeftIsStoppingAndRightIsStopping() private method

        public void InEqualityOperator_ShouldReturnFalseWhenLeftIsStoppingAndRightIsStopping()
        {
            var left = ForwardedPortStatus.Stopping;
            var right = ForwardedPortStatus.Stopping;

            var actual = left != right;

            Assert.IsFalse(actual);
        }