Appccelerate.EnsureTest.ArgumentNotNegative_WhenArgumentPositive_MustNotThrow C# (CSharp) Метод

ArgumentNotNegative_WhenArgumentPositive_MustNotThrow() приватный Метод

private ArgumentNotNegative_WhenArgumentPositive_MustNotThrow ( ) : void
Результат void
        public void ArgumentNotNegative_WhenArgumentPositive_MustNotThrow()
        {
            Assert.DoesNotThrow(() => Ensure.ArgumentNotNegative(1, "argument"));
            Assert.DoesNotThrow(() => Ensure.ArgumentNotNegative(int.MaxValue, "argument"));
        }
EnsureTest