10 lines
249 B
C#
10 lines
249 B
C#
namespace Prefab.Tests.Infrastructure.Aspire;
|
|
|
|
/// <summary>
|
|
/// xUnit collection for tests that share a single Aspire AppHost.
|
|
/// </summary>
|
|
[CollectionDefinition("AppHost")]
|
|
public class AppHostCollection : ICollectionFixture<AppHostFixture>
|
|
{
|
|
}
|