Tagged Questions

7
votes
6answers
171 views

What are the real-world pros and cons of each of the major mocking frameworks?

I'm trying to decide on a mocking framework to use on a .NET project I've recently embarked on. I'd like to speed my research on the different frameworks. I've recently read this …
3
votes
3answers
41 views

RhinoMocks - Stub a Method That Returns a Parameter

I am using RhinoMocks, I need to stub a method, and always have it return the third parameter, regardless of what is passed in: _service.Stub(x => x.Method(parm1, parm2, parm3) …
0
votes
1answer
42 views

How do I Fake UpdateModel for ASP.Net MVC?

I am trying to unit test a controller action that uses UpdateModel but I am not correctly mocking the HttpContext. I keep getting the following exception: System.InvalidOpera …
0
votes
0answers
26 views

MbUnit/Resharper complaining about Rhino.Mocks when running tests from Visual Studio 2008

I have a project that contains my tests, and the project references a Rhino.Mocks v3.5 dll that is kept in a folder in the solution. When I open up MbUnit and load the test dll, I …
0
votes
1answer
25 views

StrucutureMap RhinoMock Record/Playback, Example needed

I'm looking for some examples on how to do the following Mock Tests using StructureMap or Unity with NUnit. I have the following code structure public interface IDAL { List&l …
1
vote
2answers
48 views

Rhino.Mocks: method calls recorder (a.k.a. test spy)

I have a piece of logic I want to test and it uses dependency injected interface with one (or more) void methods, example: interface IMyService { void MethodA (MyComplexObject …
0
votes
1answer
33 views

Extension methods in Mono 2.4 and RhinoMocks 3.5

I am playing around with MonoDevelop 2.0 and Mono 2.4 in Ubuntu. I have run into problems with extension methods not being available (eg mockView.Stub(...)) in RhinoMocks 3.5 for …
1
vote
1answer
41 views

Rhino Mocks constraints and Dictionary parameters

How would you check the parameters on a function that accepts a Dictionary? IDictionary<string, string> someDictionary = new Dictionary<string, string> { {"Key1", "V …
1
vote
2answers
73 views

Rhino Mocks - Stub a Singleton

I have a Singleton that is accessed in my class via a static property like this:OtherClassNotBeingTested.Instance.SomeInstanceMethod() I would like to test my class with out makin …
1
vote
1answer
46 views

How can I test an event of a MVC controller

I want to test the OnException, OnActionExecuted event of an MVC controller. If I use mock like this: var httpContext = MockRepository.GenerateMock<HttpContextBase> …
0
votes
2answers
33 views

How do I reset the result for a property in a stub without resetting the entire stub?

I'm new to Rhino Mocks, so I may be missing something completely. Lets say I have an interface with has a half dozen properties: public interface IFoo { string Foo1 { get; } // …
2
votes
1answer
22 views

How do I set the expectation of an event when calling a method?

I've implemented an ITimer interface because I want to write some tests around a class I'm building that utilizes the System.Timers.Timer class. So the sequence goes when I call T …
5
votes
5answers
159 views

What is wrong with Stubs for unit testing?

I just watched this funny YouTube Video about unit testing (it's Hitler with fake subtitles chewing out his team for not doing good unit tests--skip it if you're humor impaired) wh …
1
vote
1answer
27 views

Mocking an arry of type with Rhino Mock

I am having issues mocking an array with Rhino Mock, any direction would be great. namespace Checks_Rhino_Mocks { public class Check { public Header header; …
1
vote
2answers
85 views

Strict Mocks using AAA syntax of Rhino Mocks

Hi, Is it possible to create a "strict" mock using the new AAA syntax of Rhino Mocks? The issue I am seeing is that the library I am mocking often returns null as a valid return v …

1 2 3 4 5 14 next
15 30 50 per page