Catel.Test.ArgumentFacts.TheIsNotNullOrEmptyArrayMethod.ThrowsArgumentExceptionForEmptyIntArrayParamValue C# (CSharp) Method

ThrowsArgumentExceptionForEmptyIntArrayParamValue() private method

private ThrowsArgumentExceptionForEmptyIntArrayParamValue ( ) : void
return void
            public void ThrowsArgumentExceptionForEmptyIntArrayParamValue()
            {
                ExceptionTester.CallMethodAndExpectException<ArgumentException>(() => Argument.IsNotNullOrEmptyArray("param", new int[] { }));
            }