Catel.Test.Collections.CollectionExtensionsFacts.TheMoveItemUpMethod.ThrowsArgumentNullExceptionForNullList C# (CSharp) 메소드

ThrowsArgumentNullExceptionForNullList() 개인적인 메소드

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