You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
grahamrhay edited this page Nov 11, 2010
·
1 revision
#CustomMatcher
For a quick and easy custom matcher:
[Test]publicvoidCustomMatcher(){varaFruit=newFruit(Color.Orange);varisOrange=newCustomMatcher<Fruit>("orange", f =>f.Colour==Color.Orange);Assert.That(aFruit,isOrange);}publicclassFruit{publicColorColour{get;privateset;}publicFruit(Colorcolour){Colour=colour;}}