Catel.Test.Collections.CollectionExtensionsFacts.TheMoveItemUpMethod.ThrowsArgumentNullExceptionForNullList C# (CSharp) Method

ThrowsArgumentNullExceptionForNullList() private method

private ThrowsArgumentNullExceptionForNullList ( ) : void
return void
            public void ThrowsArgumentNullExceptionForNullList()
            {
                int item = 2;
                ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => CollectionExtensions.MoveItemUp(null, item));
            }