Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

matcher library for .net

Does any matcher libraries exist for .net? I am talking about a library like the hamcrest library for java...

like image 692
khebbie Avatar asked Feb 18 '10 16:02

khebbie


2 Answers

Graham Hay has a .NET port of Hamcrest on GitHub:

https://github.com/grahamrhay/NHamcrest

like image 145
Mathematically Avatar answered Oct 17 '22 00:10

Mathematically


The closest thing I have yet found is the matchers in Moq: http://code.google.com/p/moq/wiki/QuickStart

http://weblogs.manas.com.ar/bcardiff/2009/02/reimproved-argument-matchers-in-moq/

However this is very tightly coupled to the mocking framework, I would like something more seperate.

like image 44
khebbie Avatar answered Oct 17 '22 01:10

khebbie