Disable Options order functional test

This commit is contained in:
Hao Kung 2015-09-02 20:53:30 -07:00
parent 6333c12d77
commit 043476192f
1 changed files with 3 additions and 4 deletions

View File

@ -9,9 +9,7 @@ using Microsoft.AspNet.Mvc.ActionConstraints;
using Microsoft.AspNet.Mvc.Actions;
using Microsoft.AspNet.Mvc.ApiExplorer;
using Microsoft.AspNet.Mvc.Filters;
using Microsoft.AspNet.Mvc.Razor;
using Microsoft.Framework.DependencyInjection;
using Microsoft.Framework.OptionsModel;
using Xunit;
namespace Microsoft.AspNet.Mvc.FunctionalTests
@ -29,8 +27,9 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests
[InlineData(typeof(IApiDescriptionProvider), null, -1000)]
[InlineData(typeof(IFilterProvider), null, -1000)]
[InlineData(typeof(IActionConstraintProvider), null, -1000)]
[InlineData(typeof(IConfigureOptions<RazorViewEngineOptions>), null, -1000)]
[InlineData(typeof(IConfigureOptions<MvcOptions>), null, -1000)]
// REVIEW: Options no longer has order
//[InlineData(typeof(IConfigureOptions<RazorViewEngineOptions>), null, -1000)]
//[InlineData(typeof(IConfigureOptions<MvcOptions>), null, -1000)]
public async Task ServiceOrder_GetOrder(Type serviceType, Type actualType, int order)
{
// Arrange