Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ Please ADD ALL Changes to the UNRELEASED SECTION and not a specific release
- Dependencies - Updated xunit.analyzers to 1.27.0
- Dependencies - Updated xunit.v3 to 3.2.2
- Dependencies - Updated Serilog to 4.3.1
- Dependencies - Updated FunFair.Test.Common to 6.2.17.1982
- Dependencies - Updated Credfeto.Docker.HealthCheck.Http.Client to 0.0.61.659
- Dependencies - Updated Figgle to 0.6.6
- Dependencies - Updated FunFair.CodeAnalysis to 7.1.35.1745
Expand All @@ -61,6 +60,7 @@ Please ADD ALL Changes to the UNRELEASED SECTION and not a specific release
- Dependencies - Updated Credfeto.Version.Information.Generator to 1.0.131.1336
- Dependencies - Updated Microsoft.NET.Test.Sdk to 18.7.0
- Dependencies - Updated Meziantou.Analyzer to 3.0.109
- Dependencies - Updated FunFair.Test.Common to 6.3.1.2342
### Removed
### Deployment Changes
<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
<ProjectReference Include="..\BuildBot.CloudFormation\BuildBot.CloudFormation.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="FunFair.Test.Infrastructure" Version="6.3.1.2342" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
</ItemGroup>
Expand All @@ -69,4 +70,4 @@
<PackageReference Include="ToStringWithoutOverrideAnalyzer" Version="0.6.0" PrivateAssets="All" ExcludeAssets="runtime" />
<PackageReference Include="xunit.analyzers" Version="1.27.0" PrivateAssets="All" ExcludeAssets="runtime" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using BuildBot.CloudFormation.Publishers;
using BuildBot.Discord.Models;
using FunFair.Test.Common;
using FunFair.Test.Common.Mocks;
using FunFair.Test.Infrastructure.Mocks;
using Mediator;
using Microsoft.Extensions.Logging;
using NSubstitute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using BuildBot.CloudFormation.Models;
using BuildBot.CloudFormation.Services;
using FunFair.Test.Common;
using FunFair.Test.Common.Mocks;
using FunFair.Test.Infrastructure.Mocks;
using Microsoft.Extensions.Logging;
using NSubstitute;
using Xunit;
Expand Down
2 changes: 1 addition & 1 deletion src/BuildBot.Discord.Tests/BuildBot.Discord.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<ProjectReference Include="..\BuildBot.Discord\BuildBot.Discord.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
Expand Down
5 changes: 3 additions & 2 deletions src/BuildBot.GitHub.Tests/BuildBot.GitHub.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
<ProjectReference Include="..\BuildBot.GitHub\BuildBot.GitHub.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="FunFair.Test.Infrastructure" Version="6.3.1.2342" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
Expand All @@ -71,4 +72,4 @@
<PackageReference Include="ToStringWithoutOverrideAnalyzer" Version="0.6.0" PrivateAssets="All" ExcludeAssets="runtime" />
<PackageReference Include="xunit.analyzers" Version="1.27.0" PrivateAssets="All" ExcludeAssets="runtime" />
</ItemGroup>
</Project>
</Project>
1 change: 1 addition & 0 deletions src/BuildBot.GitHub.Tests/DependencyInjectionTests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using BuildBot.GitHub.Publishers;
using FunFair.Test.Common;
using FunFair.Test.Infrastructure;
using Mediator;
using Microsoft.Extensions.DependencyInjection;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public sealed class GithubPushNotificationHandlerTests : TestBase
private const string TEAMCITY_REPO = "TeamCity";
private const string NORMAL_REPO = "BuildBot";
private static readonly DateTime COMMIT_TIMESTAMP = FunFair
.Test.Common.Mocks.MockDateTimeSources.Past.GetUtcNow()
.Test.Infrastructure.Mocks.MockDateTimeSources.Past.GetUtcNow()
.UtcDateTime;

private static Commit MakeCommit(string message, string? username = "testuser")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace BuildBot.GitHub.Tests.Publishers;
public sealed class GithubStatusNotificationHandlerTests : TestBase
{
private static readonly DateTime COMMIT_TIMESTAMP = FunFair
.Test.Common.Mocks.MockDateTimeSources.Past.GetUtcNow()
.Test.Infrastructure.Mocks.MockDateTimeSources.Past.GetUtcNow()
.UtcDateTime;

private static Status MakeStatus(string state)
Expand Down
2 changes: 1 addition & 1 deletion src/BuildBot.Health.Tests/BuildBot.Health.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<ProjectReference Include="..\BuildBot.Health\BuildBot.Health.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/BuildBot.Json.Tests/BuildBot.Json.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<ProjectReference Include="..\BuildBot.Json\BuildBot.Json.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
<ProjectReference Include="..\BuildBot.ServiceModel\BuildBot.ServiceModel.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="FunFair.Test.Infrastructure" Version="6.3.1.2342" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
</ItemGroup>
Expand All @@ -69,4 +70,4 @@
<PackageReference Include="ToStringWithoutOverrideAnalyzer" Version="0.6.0" PrivateAssets="All" ExcludeAssets="runtime" />
<PackageReference Include="xunit.analyzers" Version="1.27.0" PrivateAssets="All" ExcludeAssets="runtime" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using BuildBot.ServiceModel.CloudFormation;
using FunFair.Test.Common;
using FunFair.Test.Common.Mocks;
using FunFair.Test.Infrastructure.Mocks;
using Xunit;

namespace BuildBot.ServiceModel.Tests.CloudFormation;
Expand Down
2 changes: 1 addition & 1 deletion src/BuildBot.ServiceModel.Tests/GitHub/CommitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using BuildBot.ServiceModel.GitHub;
using FunFair.Test.Common;
using FunFair.Test.Common.Mocks;
using FunFair.Test.Infrastructure.Mocks;
using Xunit;

namespace BuildBot.ServiceModel.Tests.GitHub;
Expand Down
2 changes: 1 addition & 1 deletion src/BuildBot.ServiceModel.Tests/GitHub/PushTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using BuildBot.ServiceModel.GitHub;
using FunFair.Test.Common;
using FunFair.Test.Common.Mocks;
using FunFair.Test.Infrastructure.Mocks;
using Xunit;

namespace BuildBot.ServiceModel.Tests.GitHub;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using BuildBot.ServiceModel.GitHub;
using FunFair.Test.Common;
using FunFair.Test.Common.Mocks;
using FunFair.Test.Infrastructure.Mocks;
using Xunit;

namespace BuildBot.ServiceModel.Tests.GitHub;
Expand Down
2 changes: 1 addition & 1 deletion src/BuildBot.ServiceModel.Tests/GitHub/StatusTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using BuildBot.ServiceModel.GitHub;
using FunFair.Test.Common;
using FunFair.Test.Common.Mocks;
using FunFair.Test.Infrastructure.Mocks;
using Xunit;

namespace BuildBot.ServiceModel.Tests.GitHub;
Expand Down
2 changes: 1 addition & 1 deletion src/BuildBot.Tests/BuildBot.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<ProjectReference Include="..\BuildBot.Json\BuildBot.Json.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
<ProjectReference Include="..\BuildBot.Watchtower\BuildBot.Watchtower.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FunFair.Test.Common" Version="6.2.25.2243" />
<PackageReference Include="FunFair.Test.Common" Version="6.3.1.2342" />
<PackageReference Include="FunFair.Test.Infrastructure" Version="6.3.1.2342" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3.mtp-v2" Version="3.2.2" />
</ItemGroup>
Expand All @@ -69,4 +70,4 @@
<PackageReference Include="ToStringWithoutOverrideAnalyzer" Version="0.6.0" PrivateAssets="All" ExcludeAssets="runtime" />
<PackageReference Include="xunit.analyzers" Version="1.27.0" PrivateAssets="All" ExcludeAssets="runtime" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using BuildBot.Watchtower.Publishers;
using FunFair.Test.Common;
using FunFair.Test.Infrastructure;
using Mediator;
using Microsoft.Extensions.DependencyInjection;
using Xunit;
Expand Down
Loading