theSimpsonsCat.Name
should be
"Snowball 2"
but was
"Santas little helper"
difference
Difference | | | | | | | | | | | | | | | | | | |
| \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/ \|/
Index | 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Expected Value | S n o w b a l l \s 2
Actual Value | S a n t a s \s l i t t l e \s h e l p e r
Expected Code | 83 110 111 119 98 97 108 108 32 50
Actual Code | 83 97 110 116 97 115 32 108 105 116 116 108 101 32 104 101 108 112 101 114
Numeric
ShouldBe numeric overloads accept tolerances and has overloads for float, double and decimal types.
const decimal pi = (decimal)Math.PI;
pi.ShouldBe(3.24m, 0.01m);
timeSpan
should be within
01:00:00
of
02:06:00
but was
01:00:00
Enumerables
Enumerable comparison is done on the elements in the enumerable, so you can compare an array to a list and have it pass.
var apu = new Person { Name = "Apu" };
var homer = new Person { Name = "Homer" };
var skinner = new Person { Name = "Skinner" };
var barney = new Person { Name = "Barney" };
var theBeSharps = new List<Person> { homer, skinner, barney };
theBeSharps.ShouldBe(new[] { apu, homer, skinner, barney });