You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <exception cref="ArgumentException">Throw when <paramref name="enumerableType"/> does not conform to requirements or does not produce values assignable to <paramref name="parameterInfo"/>.</exception>
$"Member {this.MemberName} on {declaringType.FullName} returned an IEnumerable<object[]>, which is not supported.");
222
+
$"Member {this.MemberName} on {declaringType.FullName} returned an IEnumerable<IEnumerable<{enumeratedType.GetGenericArguments()[0].Name}>>, which is not supported.");
Assert.Equal($"Member {nameof(GetValuesAsEnumerableOfIntArray)} on {nameof(CombinatorialMemberDataAttributeTests)} returned an IEnumerable<object[]>, which is not supported.",exception.Message);
48
+
Assert.Equal($"Member {nameof(GetValuesAsEnumerableOfIntArray)} on {nameof(CombinatorialMemberDataAttributeTests)} returned an IEnumerable<Int32[]>, which is not supported.",exception.Message);
Assert.Equal($"Member {nameof(GetValuesAsDoesNotImplementIEnumerable)} on {typeof(CombinatorialMemberDataAttributeTests)}must return a type that implements System.Collections.IEnumerable.",exception.Message);
58
+
Assert.Equal($"Member {nameof(GetValuesAsEnumerableOfIntEnumerable)} on {nameof(CombinatorialMemberDataAttributeTests)}returned an IEnumerable<IEnumerable<Int32>>, which is not supported.",exception.Message);
58
59
}
59
60
60
61
[Fact]
@@ -78,6 +79,16 @@ public void EnumerableOfGuidReturnsValue()
0 commit comments