Get rid of some duplicate test data

- remove a few warnings from output when testing in VS
This commit is contained in:
Doug Bunting 2016-09-09 13:06:30 -07:00
parent 3866ee72e0
commit 9c6c8410e2
2 changed files with 0 additions and 5 deletions

View File

@ -43,9 +43,6 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding.Binders
[InlineData(typeof(IList<int>))]
[InlineData(typeof(List<int>))]
[InlineData(typeof(Collection<int>))]
[InlineData(typeof(IEnumerable<int>))]
[InlineData(typeof(IReadOnlyCollection<int>))]
[InlineData(typeof(IReadOnlyList<int>))]
public void Create_ForSupportedTypes_ReturnsBinder(Type modelType)
{
// Arrange

View File

@ -941,10 +941,8 @@ namespace Microsoft.AspNetCore.Mvc.Routing
[Theory]
[InlineData(null, null, null, "/", null, "/")]
[InlineData(null, null, null, "/", null, "/")]
[InlineData(null, null, null, "/Hello", null, "/Hello" )]
[InlineData(null, null, null, "Hello", null, "/Hello")]
[InlineData(null, null, null, "/Hello", null, "/Hello")]
[InlineData("/", null, null, "", null, "/")]
[InlineData("/hello/", null, null, "/world", null, "/hello/world")]
[InlineData("/hello/", "https", "myhost", "/world", "fragment-value", "https://myhost/hello/world#fragment-value")]