OfType
ShouldBeOfType
is the inverse of ShouldNotBeOfType
.var theSimpsonsDog = new Cat { Name = "Santas little helper" };
theSimpsonsDog.ShouldBeOfType<Dog>();
Exception
theSimpsonsDog
should be of type
Simpsons.Dog
but was
Simpsons.Cat
var theSimpsonsDog = new Cat { Name = "Santas little helper" };
theSimpsonsDog.ShouldNotBeOfType<Cat>();
Exception
theSimpsonsDog
should not be of type
Simpsons.Cat
but was
Santas little helper
Last modified 5mo ago