We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For this snippet MSTEST0018 is reported when using IEnumerable<MyClass> but not for MyClass[]
IEnumerable<MyClass>
MyClass[]
using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Collections.Generic; namespace TestProject2; [TestClass] public class UnitTest1 { [TestMethod] [DynamicData(nameof(Data1), DynamicDataSourceType.Method)] public void TestMethod1(MyClass _) { } private static MyClass[][] Data1() => [[new(1)], [new(2)]]; [TestMethod] [DynamicData(nameof(Data2), DynamicDataSourceType.Method)] public void TestMethod2(MyClass _) { } private static IEnumerable<MyClass[]> Data2() => [[new(1)], [new(2)]]; public record MyClass(int Id); }
Both tests runs for each test case, so I'm also not sure why the element type for IEnumerable<T> needs to be object.
IEnumerable<T>
object
The text was updated successfully, but these errors were encountered:
Evangelink
Successfully merging a pull request may close this issue.
For this snippet MSTEST0018 is reported when using
IEnumerable<MyClass>
but not forMyClass[]
Both tests runs for each test case, so I'm also not sure why the element type for


IEnumerable<T>
needs to beobject
.The text was updated successfully, but these errors were encountered: