Exercise project with Order domain and NUnit tests demonstrating the 'show, don't tell' pattern for guiding coding agents. - 1 refactored test using custom matcher (the example) - 5 unrefactored tests with multiple asserts (the practice) - OrderStateConstraint custom matcher for NUnit 3
8 lines
205 B
XML
8 lines
205 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
</Project>
|