Does RhinoMocks work with SilverLight 4? If not, are there any alternatives? I know that RhinoMock 3.5 has been ported to SilverLight, but I cannot find the dll file开发者_运维问答, because I every
In the test below, the mocked datareader returns the desired value the first time, but then returns the same value when the index should be 1.
I\'ve written such 开发者_JAVA百科class: public class A { public virtual int LowLimit { get; set; }
I have an interface against which I run a linq to sql query: public interface IMyDataContext : IDisposable
I am trying to mock UnityContainer for writing test harness in an asp.net mvc 2 application. are开发者_运维百科 there any examples available ?
I am new to Rhino Mocks. I have several models. One of them is as below. I want to use Rhino Mocks. I downloaded the latest Rhino.Mocks.dll and added it to my testharness project. How do I mock my mod
I have a static class in my program.In the static constructor I create instance of se开发者_StackOverflow中文版rvice. The proxy of service is a singleton.
I am using Rhino Mocks. I have a data repository, a small part of it is defined like this, interface IDataRepository
We\'re considering switching from Rhino to FakeItEasy for our mocking framework. The main reason is simplicity, in FakeItEasy there\'s only one way to do things. Rhino has record/playback, AAA, stub,
I\'m developing a little .net 2.0 project. I get to the point where I need to test some class\'s method which takes an IEnumerator. As a few days ago I learnt to use Rhino Mocks I wrote the following