GildedRose-Refactoring-Kata/csharp.xUnit
Artur Goloyad a0066f58cd test: add failing specification tests for Conjured items
Conjured items must degrade twice as fast: -2 before sell-by, -4 after,
never below 0. Red on purpose (TDD) - the legacy code still treats
Conjured as a normal item; they go green once ConjuredItemUpdater lands.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-25 20:49:08 +02:00
..
GildedRose
GildedRoseTests test: add failing specification tests for Conjured items 2026-07-25 20:49:08 +02:00
.gitignore
GildedRose.sln
README.md

Gilded Rose starting position in C# xUnit

Build the project

Use your normal build tools to build the projects in Debug mode. For example, you can use the dotnet command line tool:

dotnet build GildedRose.sln -c Debug

Run the Gilded Rose Command-Line program

For e.g. 10 days:

GildedRose/bin/Debug/net8.0/GildedRose 10

Run all the unit tests

dotnet test