Disable Options order functional test
This commit is contained in:
parent
6333c12d77
commit
043476192f
|
|
@ -9,9 +9,7 @@ using Microsoft.AspNet.Mvc.ActionConstraints;
|
||||||
using Microsoft.AspNet.Mvc.Actions;
|
using Microsoft.AspNet.Mvc.Actions;
|
||||||
using Microsoft.AspNet.Mvc.ApiExplorer;
|
using Microsoft.AspNet.Mvc.ApiExplorer;
|
||||||
using Microsoft.AspNet.Mvc.Filters;
|
using Microsoft.AspNet.Mvc.Filters;
|
||||||
using Microsoft.AspNet.Mvc.Razor;
|
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.DependencyInjection;
|
||||||
using Microsoft.Framework.OptionsModel;
|
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Mvc.FunctionalTests
|
namespace Microsoft.AspNet.Mvc.FunctionalTests
|
||||||
|
|
@ -29,8 +27,9 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests
|
||||||
[InlineData(typeof(IApiDescriptionProvider), null, -1000)]
|
[InlineData(typeof(IApiDescriptionProvider), null, -1000)]
|
||||||
[InlineData(typeof(IFilterProvider), null, -1000)]
|
[InlineData(typeof(IFilterProvider), null, -1000)]
|
||||||
[InlineData(typeof(IActionConstraintProvider), null, -1000)]
|
[InlineData(typeof(IActionConstraintProvider), null, -1000)]
|
||||||
[InlineData(typeof(IConfigureOptions<RazorViewEngineOptions>), null, -1000)]
|
// REVIEW: Options no longer has order
|
||||||
[InlineData(typeof(IConfigureOptions<MvcOptions>), null, -1000)]
|
//[InlineData(typeof(IConfigureOptions<RazorViewEngineOptions>), null, -1000)]
|
||||||
|
//[InlineData(typeof(IConfigureOptions<MvcOptions>), null, -1000)]
|
||||||
public async Task ServiceOrder_GetOrder(Type serviceType, Type actualType, int order)
|
public async Task ServiceOrder_GetOrder(Type serviceType, Type actualType, int order)
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue