public void ConfigureJsonFormatting_WithoutConfigureFunction_Fails()
        {
            // Arrange
            var options = new MvcOptions();

            // Act / Assert
            Assert.ThrowsAny <ArgumentException>(() => options.ConfigureJsonFormatting(configureOptions: null));
        }