Tagged Questions
Rhino.Mocks is a dynamic mock object framework for the .Net platform. Rhino.Mock's purpose is to ease testing by allowing the developer to create mock implementations of custom objects and verify the interactions using unit testing.
54
votes
7answers
10k views
Best Practices of Test Driven Development Using C# and RhinoMocks [closed]
In order to help my team write testable code, I came up with this simple list of best practices for making our C# code base more testable. (Some of the points refer to limitations of Rhino Mocks, a ...
39
votes
5answers
23k views
Rhino Mocks: good tutorials
I'm looking for a good tutorial on mock objects in general and Rhino Mocks in particular. I'd like to recommend it to co-workers to help bring them up to speed.
One co-worker is an experienced ...
32
votes
6answers
4k views
What are the capabilities of Moq and Rhino.mocks?
I cannot find a specific feature-by-feature comparison of Moq and Rhino. All the questions are "which do you like better and why", or "here's how you do a simple mock in rhino and how it's done in ...
30
votes
8answers
11k views
Mocking Asp.net-mvc Controller Context
So the controller context depends on some asp.net internals. What are some ways to cleanly mock these up for unit tests? Seems like its very easy to clog up tests with tons of setup when I only need, ...
27
votes
5answers
6k views
How to mock the Request on Controller in ASP.Net MVC?
I have a controller in C# using the ASP.Net MVC framework
public class HomeController:Controller{
public ActionResult Index()
{
if (Request.IsAjaxRequest())
{
//do some ...
26
votes
6answers
8k views
Mocking Static methods using Rhino.Mocks
Is it possible to mock a static method using Rhino.Mocks ?
if Rhino does not support this.. Is there a pattern or something which would let me accomplish the same ?
20
votes
1answer
2k views
Rhino Mocks: How to clear previous expectations on an object?
I would like to set up a return value
_stubRepository.Stub(Contains(null)).IgnoreArguments().Return(true);
but then in a specific test, override that expectation to return false.
Something like
...
18
votes
6answers
6k views
Rhino Mocks AssertWasCalled (multiple times) on property getter using AAA
I have a mocked object that is passed as a constructor argument to another object.
How can I test that a mocked object's property has been called? This is code I am using currently:
...
16
votes
3answers
9k views
Rhino Mocks - Stub .Expect vs .AssertWasCalled
Disclosure: I am a Rhino Mocks n00b!
OK, I know there has been a lot of confusion over the new AAA syntax in Rhino Mocks, but I have to be honest, from what I have seen so far, I like. It reads ...
16
votes
1answer
3k views
What are the differences between mocks and stubs on Rhino Mocks?
I haven't play enough with this and usually use mocks, but I wonder what are the differences between this two and when to use one or the other on Rhino Mocks.
Update:
I also found the answer to my ...
14
votes
6answers
4k views
Rhino mock vs Typemock vs JustMock vs
I need to choose mock framework to new project.
What are the pros and cons for those frameworks?
Any comparison table?
I know that JustMock is i beta stage but it's look very good right now (very ...
13
votes
5answers
629 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) where stubs get ...
12
votes
7answers
1k views
What are the real-world pros and cons of each of the major mocking frameworks?
see also "What should I consider when
choosing a mocking framework for
.Net"
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 ...
12
votes
8answers
1k views
Is there any open source mocking framework resembling TypeMock?
TypeMock is too expensive for a hobbist like me :)
Moq or the next version of RhinoMocks have no plans on listening to the profiling API, why is that?
EDIT: This enables features such as:
Mocking ...
12
votes
3answers
3k views
Using RhinoMocks, how do you mock or stub a concrete class without an empty constructor?
Mocking a concrete class with Rhino Mocks seems to work pretty easy when you have an empty constructor on a class:
public class MyClass{
public MyClass() {}
}
But if I add a constructor that ...
11
votes
2answers
3k views
download link for latest Rhino mocks binaries (googling didn't help)
can someone share the link to download the latest version of Rhino mocks binaries (binaries only, I don't need source)? the link http://ayende.com/projects/rhino-mocks/downloads.aspx, doesn't seem to ...
11
votes
2answers
2k views
Stubbing a read only property with Rhino Mocks
I have a class with a private set property that I want to stub out with rhino mocks. When I try to do this, though, it gives me a compile time error saying I can't set a read only property. I'm new ...
11
votes
6answers
4k views
Rhino Mocks: Asserting that a method is called exactly one time
I want to assert that a method is called exactly one time.
Update: I'm using RhinoMocks 3.5.
Here's what I thought would work:
[Test]
public void just_once()
{
var key = "id_of_something";
...
10
votes
2answers
1k views
Rhino Mocks - Difference between GenerateStub<T> & GenerateMock<T>
Can any of the Rhino experts explain me by giving a suitable example of the differnce between the above methods on the MockRepository class (Rhino Mocks framework).Where should one use Stub over Mock ...
10
votes
1answer
1k views
Rhino mocks — change behaviour of stubs
WARNING
Having written a lot of tests in C# and Java in the time since I initially posted this question, i learned an important lesson:
Changing the behaviour of stubs is a code smell!
It typically ...
9
votes
2answers
185 views
Are lambdas constructors for delegate types?
I've discovered that Rhino Mocks' AssertWasCalled fails when I use lambdas as parameters to the method being asserted.
TEST :
_mockDoer.AssertWasCalled(x => x.Print(y => ...
9
votes
2answers
2k 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)).Return(parm3);
...
8
votes
2answers
332 views
Rhino Mocks Error: Previous method 'IEnumerator.MoveNext();' requires a return value or an exception to throw
I have the following test code:
parentViewModel = MockRepository.GenerateMock<IParentViewModel>();
parentViewModel.Expect(x => ...
8
votes
5answers
2k views
Rhino Mocks stubs and mocks are only good for interfaces?
Is it correct that Rhino Mocks stubs and mocks are only good for interfaces, not concrete classes? I spent quite a time trying to make this piece of code working. What I did not expected is that ...
8
votes
4answers
2k views
Is it possible to create a mock object that implements multiple interfaces with EasyMock?
Is it possible to create a mock object that implements several interfaces with EasyMock?
For example, interface Foo and interface Closeable?
In Rhino Mocks you can provide multiple interfaces when ...
8
votes
3answers
2k views
Unittesting Url.Action (using Rhino Mocks?)
I'm trying to write a test for an UrlHelper extensionmethod that is used like this:
Url.Action<TestController>(x => x.TestAction());
However, I can't seem set it up correctly so that I can ...
8
votes
5answers
606 views
How to avoid duplicate code when using mocks in unittests
I am using dependency injection to supply mocks for code outside of my class under test. I find myself writing alot of the same code over and over as I need to mock out AuthProvider, ...
8
votes
5answers
4k views
Mocking HttpContext doesn't work
I am trying to mock out HttpContext so that I can unit test my controller's Request.IsAuthenicated call. I am using the code that I found at Scott Hanselman's blog to simulate HttpContext using ...
8
votes
3answers
5k views
RhinoMocks: Correct way to mock property getter
I'm new to RhinoMocks, and trying to get a grasp on the syntax in addition to what is happening under the hood.
I have a user object, we'll call it User, which has a property called IsAdministrator. ...
7
votes
2answers
254 views
Unit testing void method that creates a new object
I have a method like the following:
public void ExecuteSomeCommand()
{
new MyCommand( someInt, SomeEnum.EnumValue ).Execute();
}
I'd like to test that the enum value that is passed in to the ...
7
votes
2answers
715 views
Multiple calls to a Rhino mocked method return different results
If I want to mock a class that returns a string that is used to determine whether while loop should continue (imagine read while string != null), how can I set the expectation. I have tried the ...
7
votes
4answers
5k views
RhinoMock vs. TypeMock vs. NUnit's Mocking?
I am just starting to do Test Driven Development, and I am wondering the major differences between RhinoMock, TypeMock, and NUnit's built-in mocking?
Any information would be greatly appreciated!
7
votes
4answers
725 views
What is the AAA syntax equivalent to using Ordered() in Rhino Mocks
I can't for the life of me find the proper syntax using the Fluent/AAA syntax in Rhino for validating order of operations.
I know how to do this with the old school record/playback syntax:
...
7
votes
4answers
2k views
Is there an in-memory provider for Entity Framework?
I am unit testing code written against the ADO .NET Entity Framework. I would like to populate an in-memory database with rows, and make sure that my code retrieves them properly.
I can mock the ...
7
votes
3answers
369 views
What is the best style/syntax to use with Rhino Mocks?
Multiple approaches exist to write your unit tests when using Rhino Mocks:
The Standard Syntax
Record/Replay Syntax
The Fluent Syntax
What is the ideal and most frictionless way?
6
votes
0answers
78 views
Simplest way to mock properties of PostSharp attribute
I'm using a PostSharp method attribute to do authorisation and auditing on my WCF service. It's working properly but now I'm trying to get my unit tests working with the attribute and am struggling to ...
6
votes
1answer
264 views
Rhino Mocks: How to stub a generic method to catch an anonymous type?
We need to stub a generic method which will be called using an anonymous type as the type parameter. Consider:
interface IProgressReporter
{
T Report<T>(T progressUpdater);
}
// Unit test ...
6
votes
2answers
3k views
TDD a controller with ASP.NET MVC 2, NUnit and Rhino Mocks
What would a simple unit test look like to confirm that a certain controller exists if I am using Rhino Mocks, NUnit and ASP.NET MVC 2? I'm trying to wrap my head around the concept of TDD, but I ...
6
votes
1answer
1k views
Best way to mock WCF Client proxy
Are there any ways to mock a WCF client proxy using Rhino mocks framework so I have access to the Channel property? I am trying to unit test Proxy.Close() method but as the proxy is constructed using ...
6
votes
3answers
2k views
How do I mock IQueryable<T>
I am creating a repository that exposes IQueryable. What is the best way to mock this out for my unit testing?
Since I am using RhinoMocks for the rest of my mock objects, I tried to do the ...
6
votes
4answers
193 views
Getting DRY with Rhino Mocks
I am looking for ways of making the following more concise.
public class MyTests
{
IPresenter presenter;
[SetUp]
public void SetUp()
{
presenter = ...
6
votes
4answers
1k views
Rhino Mocks AAA Quick Start?
I've been looking around for some decent information on using Rhino Mocks 3.5+ with the AAA syntax. I find a lot of blogs that have a mix of things from the old and new which seem to make it more ...
6
votes
2answers
1k views
Rhino Mocks: Repeat.Once() not working?
Its absurdly late/early so maybe I'm just tired, but can anyone tell me why in the world the following test is not failing?
[Test]
public void uhh_what() {
var a = ...
6
votes
2answers
2k views
Rhino Mocks - Verify Property Set when Property has no Get
If you have a property:
public class Fred
{
public string UserName
{
set
{
userName=value;
}
}
}
how do you use Rhino Mocks to check that
fred= new Fred();
...
6
votes
3answers
1k views
Mocking GetEnumerator() method of an IEnumerable<T> types
The following test case fails in rhino mocks:
[TestFixture]
public class EnumeratorTest
{
[Test]
public void Should_be_able_to_use_enumerator_more_than_once()
{
...
6
votes
2answers
2k views
rhino-mocks - good sample apps
I know that there has been a couple questions about tutorials on rhino-mocks. But I am wondering if there are any sample apps out there that use rhino-mocks in the context of an n-tier business ...
6
votes
6answers
2k views
Mocking method results
I'm trying to find a way to fake the result of a method called from within another method.
I have a "LoadData" method which calls a separate helper to get some data and then it will transform it (I'm ...
5
votes
2answers
68 views
How to check an action's call to View() has not thrown an exception?
If we hit SomeController.SomeAction() but the file SomeAction.cshtml isn't found we get a System.InvalidOperationException and the output error message...
The view 'SomeAction' or its master was not ...
5
votes
1answer
122 views
Rhino Mocks: stubbing value used in assertion?
First my question, and then some details:
Q: Do I need to stub the value of a property when making sure its value is used in a subsequent assignment?
Details:
I'm using Rhino Mocks 3.5's AAA syntax ...
5
votes
6answers
104 views
How would I go about unit testing this?
I need to develop a fairly simple algorithm, but am kindof confused as how to best write a test for it.
General description: User needs to be able to delete a Plan. Plan has Tasks associated with ...