I am new to testing.I have to test some C# classes.Kindly let me know what is mocking and
why some mocking framework like Rhino mock is preferred over nUint?
I am new to testing.I have to test some C# classes.Kindly let me know
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I will assume that you are talking about NUnit. Mocking frameworks is nothing that you use instead of a unit testing framework; you use them together. In short, the purpose of a mocking framework is to mock (or fake) functionality that the tested code is depending upon, but that is not the code that you currently want to test.