From 8be1df1e85e2dce36b592a528080b2d95b6458ae Mon Sep 17 00:00:00 2001 From: Chris Rudolphi <1702962+clrudolphi@users.noreply.github.com> Date: Thu, 28 May 2026 09:42:09 -0500 Subject: [PATCH] Replace FluentAssertions Using fork of FluentAssertions, AwesomeAssertions that has a compatible license type. --- CHANGELOG.md | 1 + dotnet/Cucumber.CCK.Tests/Cucumber.CCK.Tests.csproj | 2 +- dotnet/Cucumber.CCK.Tests/SamplesTests.cs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 085161e3..a17a987d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Changed - [Ruby] Minimum ruby version is now bumped from `3.1` to `3.2` +- [.Net] Replace assertion library FluentAssertions with AwesomeAssertions ## [29.2.2] - 2026-05-11 ### Fixed diff --git a/dotnet/Cucumber.CCK.Tests/Cucumber.CCK.Tests.csproj b/dotnet/Cucumber.CCK.Tests/Cucumber.CCK.Tests.csproj index 191eecff..1191bb50 100644 --- a/dotnet/Cucumber.CCK.Tests/Cucumber.CCK.Tests.csproj +++ b/dotnet/Cucumber.CCK.Tests/Cucumber.CCK.Tests.csproj @@ -7,13 +7,13 @@ + all runtime; build; native; contentfiles; analyzers; buildtransitive - diff --git a/dotnet/Cucumber.CCK.Tests/SamplesTests.cs b/dotnet/Cucumber.CCK.Tests/SamplesTests.cs index ac20a96f..4fac8123 100644 --- a/dotnet/Cucumber.CCK.Tests/SamplesTests.cs +++ b/dotnet/Cucumber.CCK.Tests/SamplesTests.cs @@ -1,6 +1,6 @@ using System; using System.IO; -using FluentAssertions; +using AwesomeAssertions; using Xunit; namespace Cucumber.CCK.Tests;