...

/

Solution Review: Converting xUnit Assertions to Fluent Assertions

Solution Review: Converting xUnit Assertions to Fluent Assertions

Review the solution to converting standard xUnit assertions into Fluent Assertions.

We'll cover the following...

The completed solution is presented in the code playground below:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net7.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

</Project>
The final project setup with Fuent Assertions
    ...