Appccelerate.EnsureTest.ArgumentNotNegative_WhenArgumentPositive_MustNotThrow C# (CSharp) Method

ArgumentNotNegative_WhenArgumentPositive_MustNotThrow() private method

        public void ArgumentNotNegative_WhenArgumentPositive_MustNotThrow()
        {
            Assert.DoesNotThrow(() => Ensure.ArgumentNotNegative(1, "argument"));
            Assert.DoesNotThrow(() => Ensure.ArgumentNotNegative(int.MaxValue, "argument"));
        }
EnsureTest