Are there any unit-testing and mocking frameworks for C# that run on Mono ?
+2
A:
if you use NUnit on C#/.NET you may find an answer here: http://stackoverflow.com/questions/613578/nunit-on-mono
PierrOz
2010-03-28 19:46:28
A:
Mono's aim is to provide a complete implementation. If you find a C#/.Net application that doesn't work on Mono (and doesn't fail just because of some p/invoke or something) you might have found a bug in Mono.
In other words: Every native (read: fully managed) C# based framework should work on Mono.
Things I'd look at (note: I didn't test them on Mono, but see above):
Benjamin Podszun
2010-03-28 19:49:42
A:
I've used Rhino.Mocks some time ago. http://www.ayende.com/projects/rhino-mocks.aspx.
Also a version of NUnit is already embedded in Mono, and has a nice GUI in the MonoDevelop IDE.
Monoman
2010-04-06 19:18:07