Skip to content

Commit

Permalink
fix: Mark .Tests.Integration Assemblies with `CollectionBehavior(Co…
Browse files Browse the repository at this point in the history
…llectionBehavior.CollectionPerAssembly)`
  • Loading branch information
samtrion committed Apr 4, 2024
1 parent 7065a35 commit e440970
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ public sealed class AzuriteAccess : IAsyncLifetime, IAsyncDisposable
public const string AccountKey =
"Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==";

private readonly AzuriteContainer _container = new AzuriteBuilder()
.Build();
private readonly AzuriteContainer _container = new AzuriteBuilder().Build();

public string ConnectionString => _container.GetConnectionString();

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using Xunit;

[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly)]
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)HealthCheckTestBase.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Internals.cs" />
<Compile Include="$(MSBuildThisFileDirectory)ModuleInitializer.cs" />
<None Include="$(MSBuildThisFileDirectory)/_snapshot/**/*.verified.txt" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<PropertyGroup />
<ItemGroup>
<Compile Include="HealthCheckTestBase.cs" />
<Compile Include="Internals.cs" />
<Compile Include="ModuleInitializer.cs" />
</ItemGroup>
<Import Project="NetEvolve.HealthChecks.Tests.Shared.projitems" Label="Shared" />
Expand Down

0 comments on commit e440970

Please sign in to comment.