Reputation: 12668
Can somebody share some powerful mocking frameworks for .net 1.1.
I already tried NMock2 it seems that it only mocks the interfaces but i also want to mock classes.
Please also note that in my original code we are doing type checking (on the object I am trying to mock) so I don't think that Interface mocking can help me in anyway.
I know there are some other post related to this but those are usually too old and some of link provided in answers are not not working any more and information seems to be out dated.
Upvotes: 0
Views: 94
Reputation:
There are two different kinds of mocking frameworks:
The bottom line is: You'll have to pay for what you want.
Btw.: Are you really on NET 1.1?? Then you will have a very hard time finding any tool - not just mocking - that still works with this runtime version. - I suspect that none of the above mentioned will run, because most of the important language features were introduced in later versions. You really should use at least .NET 3.5!
Upvotes: 1