Does any matcher libraries exist for .net? I am talking about a library like the hamcrest library for java...
Asked
Active
Viewed 1,639 times
2 Answers
1
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.

khebbie
- 2,490
- 3
- 31
- 53
-
1I have found that the mocking framework is excactly where I need matchers. – khebbie Mar 15 '10 at 21:26