1 type derived from AssemblyFixtureAttribute
Microsoft.AspNetCore.InternalTesting (1)
AssemblyTestLogFixtureAttribute.cs (1)
6public class AssemblyTestLogFixtureAttribute : AssemblyFixtureAttribute
6 instantiations of AssemblyFixtureAttribute
Microsoft.AspNetCore.InternalTesting.Tests (1)
Properties\AssemblyInfo.cs (1)
10[assembly: AssemblyFixture(typeof(TestAssemblyFixture))]
Templates.Blazor.Tests (1)
src\ProjectTemplates\Shared\AssemblyInfo.AssemblyFixtures.cs (1)
8[assembly: AssemblyFixture(typeof(ProjectFactoryFixture))]
Templates.Blazor.WebAssembly.Auth.Tests (1)
src\ProjectTemplates\Shared\AssemblyInfo.AssemblyFixtures.cs (1)
8[assembly: AssemblyFixture(typeof(ProjectFactoryFixture))]
Templates.Blazor.WebAssembly.Tests (1)
src\ProjectTemplates\Shared\AssemblyInfo.AssemblyFixtures.cs (1)
8[assembly: AssemblyFixture(typeof(ProjectFactoryFixture))]
Templates.Mvc.Tests (1)
src\ProjectTemplates\Shared\AssemblyInfo.AssemblyFixtures.cs (1)
8[assembly: AssemblyFixture(typeof(ProjectFactoryFixture))]
Templates.Tests (1)
src\ProjectTemplates\Shared\AssemblyInfo.AssemblyFixtures.cs (1)
8[assembly: AssemblyFixture(typeof(ProjectFactoryFixture))]
4 references to AssemblyFixtureAttribute
Microsoft.AspNetCore.InternalTesting (3)
xunit\AspNetTestAssemblyRunner.cs (3)
42.GetCustomAttributes(typeof(AssemblyFixtureAttribute), false) 43.Cast<AssemblyFixtureAttribute>() 47foreach (var fixtureAttribute in fixturesAttributes)
Microsoft.AspNetCore.InternalTesting.Tests (1)
TestableAssembly.cs (1)
58var fixtureConstructor = typeof(AssemblyFixtureAttribute).GetConstructor(new[] { typeof(Type) });