Skip to content

Commit f595b77

Browse files
authored
Merge pull request #11 from hash-code-io/feat/container-manager-public-methods
feat: made StartContainers and ShutdownContainers public
2 parents 097f827 + 228af15 commit f595b77

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

src/RapidIntegrationTesting.Utility/RapidIntegrationTesting.Utility.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.10" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.14" />
1313
</ItemGroup>
1414

1515

src/RapidIntegrationTesting.xUnit/RapidIntegrationTesting.xUnit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="xunit.extensibility.execution" Version="2.5.0" />
12+
<PackageReference Include="xunit.extensibility.execution" Version="2.6.1" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

src/RapidIntegrationTesting/ContainerManagement/ContainerManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class ContainerManager
1313
/// Shuts down all managed containers
1414
/// </summary>
1515
/// <returns></returns>
16-
internal static async Task ShutdownContainers()
16+
public static async Task ShutdownContainers()
1717
{
1818
await Semaphore.WaitAsync().ConfigureAwait(false);
1919
try
@@ -44,7 +44,7 @@ public static void AddContainers(params Func<Task<RunningContainerInfo>>[] build
4444
/// Function to start all containers and provide configuration values based on them
4545
/// </summary>
4646
/// <returns>A list of functions to start the containers</returns>
47-
internal static async Task<ContainerConfigurations> StartContainers()
47+
public static async Task<ContainerConfigurations> StartContainers()
4848
{
4949
await Semaphore.WaitAsync().ConfigureAwait(false);
5050
try

src/RapidIntegrationTesting/RapidIntegrationTesting.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.10" />
9-
<PackageReference Include="Testcontainers" Version="3.5.0" />
10-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="7.0.10" />
8+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.14" />
9+
<PackageReference Include="Testcontainers" Version="3.6.0" />
10+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="7.0.14" />
1111
</ItemGroup>
1212

1313
<PropertyGroup>

test/RapidIntegrationTesting.Integration.Tests/RapidIntegrationTesting.Integration.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
13-
<PackageReference Include="Testcontainers.MsSql" Version="3.5.0" />
14-
<PackageReference Include="xunit" Version="2.5.0" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
13+
<PackageReference Include="Testcontainers.MsSql" Version="3.6.0" />
14+
<PackageReference Include="xunit" Version="2.6.1" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
<PrivateAssets>all</PrivateAssets>
1818
</PackageReference>

test/Testing.Integration.TestWebApi/Testing.Integration.TestWebApi.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.10" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.10" />
12+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.14" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.14" />
1414
</ItemGroup>
1515

1616
</Project>

0 commit comments

Comments
 (0)