I have a class which has a internal method and i want to mock the internal method . But i am unable to mock it i.e. it is not calling the mocked function but calling the ori
If you need to test lots of code that you can't change, you should better go with MS Moles or TypeMock from the beginning.
Free mocking frameworks like Moq give you only support on interfaces and virtual methods anyway. Does not sound as if you will go far with that...
Thomas