Skip to content

Should testing for .NET—the way assertions should be!

License

Notifications You must be signed in to change notification settings

shouldly/shouldly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3d60842 · Mar 27, 2025
Jan 24, 2025
Jan 19, 2018
Feb 14, 2025
Mar 26, 2025
Feb 14, 2025
Mar 27, 2025
Feb 14, 2025
Sep 19, 2020
Oct 18, 2020
Oct 16, 2019
Jan 15, 2025
Jan 15, 2025
Jan 23, 2025
Feb 14, 2025
Jul 9, 2024
Mar 23, 2025
Mar 31, 2015

Repository files navigation

Shouldly Logo

CI NuGet NuGet Join the chat at https://gitter.im/shouldly/shouldly

Shouldly is an assertion framework which focuses on giving great error messages when the assertion fails while being simple and terse.

This is the old Assert way:

Assert.That(contestant.Points, Is.EqualTo(1337));

For your troubles, you get this message, when it fails:

Expected 1337 but was 0

How it Should be:

contestant.Points.ShouldBe(1337);

Which is just syntax, so far, but check out the message when it fails:

contestant.Points should be 1337 but was 0

It might be easy to underestimate how useful this is. Another example, side by side:

Assert.That(map.IndexOfValue("boo"), Is.EqualTo(2));    // -> Expected 2 but was -1
map.IndexOfValue("boo").ShouldBe(2);                    // -> map.IndexOfValue("boo") should be 2 but was -1

Shouldly uses the code before the ShouldBe statement to report on errors, which makes diagnosing easier.

Read more about Shouldly and its features at https://docs.shouldly.org/.

Installation

Shouldly can be found here on NuGet and can be installed by copying and pasting the following command into your Package Manager Console within Visual Studio (Tools > NuGet Package Manager > Package Manager Console).

Install-Package Shouldly

Alternatively if you're using .NET Core then you can install Shouldly via the command line interface with the following command:

dotnet add package Shouldly

Contributing

Contributions to Shouldly are very welcome. For guidance, please see CONTRIBUTING.md