Skip to content
New issue

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

MSTEST0018 FP with IEnumerable<SomeType[]> #3977

Closed
Evangelink opened this issue Oct 30, 2024 · 0 comments · Fixed by #3978
Closed

MSTEST0018 FP with IEnumerable<SomeType[]> #3977

Evangelink opened this issue Oct 30, 2024 · 0 comments · Fixed by #3978

Comments

@Evangelink
Copy link
Member

For this snippet MSTEST0018 is reported when using IEnumerable<MyClass> but not for 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);
}

image

Both tests runs for each test case, so I'm also not sure why the element type for IEnumerable<T> needs to be object.
image
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant