Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for mocking the azure storage transactions using Moles Mocking framework.

Any thoughts/documentation/samples on how to mock the azure storage transactions using Moles or may be any other mocking framework?

share|improve this question
P.S. I have already been through Guidance on Efficiently Testing Azure Solutions – Kunal Kapoor Jan 20 at 18:41

1 Answer

While this don't answer directly the question, as an alternative solution, I use the emulator shipped out of the box, which I believe could be considered as a mock of the azure storage.

Here is the piece of code I've added in my unit test base class to start the storage emulator:

    [TestInitialize]
    public void setup()
    {
         Process.Start(@"C:\Program Files\Microsoft SDKs\Windows Azure\Emulator\csrun", "/devstore").WaitForExit();

    }
share|improve this answer
Thanks Uzul! However, I am looking forward to mock the entities/transactions and avoid usage of storage emulator. – Kunal Kapoor Jan 21 at 6:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.