public void MaxOperationsPerChangesetShouldThrowIfSetToNegativeNumber()
        {
            Action testSubject = () => this.settings.MessageQuotas.MaxOperationsPerChangeset = -1;

            testSubject.ShouldThrow <ArgumentOutOfRangeException>().WithMessage(ODataErrorStrings.ExceptionUtils_CheckIntegerNotNegative(-1), ComparisonMode.StartWith);
        }