Overview

Installation
Contributing
Prerequisites for running on build server
Currently maintained by
Brought to you by
Last updated
Assert.That(contestant.Points, Is.EqualTo(1337));Expected 1337 but was 0contestant.Points.ShouldBe(1337);contestant.Points should be 1337 but was 0Assert.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 -1Install-Package Shouldlydotnet add package Shouldly