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
After upgrading xUnit versions from 2.4.1 to 2.9.2 and Xunit.Extensions.AssemblyFixture from 2.4.1 to 2.6.0, we are encountering the warning xUnit1041 for the assembly fixture parameter in the constructor (dbSetup):
public class DbUtilsTests : IAssemblyFixture<DbSetup>
{
private readonly IServiceCollection _services;
public DbUtilsTests(DbSetup dbSetup, ITestOutputHelper testOutputHelper)
{
}
}
Do you have any suggestions on how to resolve this warning?
The text was updated successfully, but these errors were encountered:
After upgrading xUnit versions from 2.4.1 to 2.9.2 and Xunit.Extensions.AssemblyFixture from 2.4.1 to 2.6.0, we are encountering the warning xUnit1041 for the assembly fixture parameter in the constructor (dbSetup):
Do you have any suggestions on how to resolve this warning?
The text was updated successfully, but these errors were encountered: