Catel.Test.Collections.CollectionExtensionsFacts.TheMoveItemDownByIndexMethod.ThrowsArgumentOutOfRangeExceptionForIndexSmallerThanZero C# (CSharp) Method

ThrowsArgumentOutOfRangeExceptionForIndexSmallerThanZero() private method

            public void ThrowsArgumentOutOfRangeExceptionForIndexSmallerThanZero()
            {
                var list = new List<int> { 1, 2, 3 };
                ExceptionTester.CallMethodAndExpectException<ArgumentOutOfRangeException>(() => list.MoveItemDownByIndex(-1));
            }