rhino mocks

There are 7 entries for the tag rhino mocks

Comparing Moq to Rhino Mocks

UPDATE: I should have entitled this “Comparing Rhino Mocks and MoQ for State Based Testing”. I tend to prefer state-based testing over interaction based testing except in the few cases where it is absolutely necessary or makes the test much cleaner. When it is necessary, it is nice to have interaction based testing available. So my comparison is incomplete as I didn’t compare interaction based testing between the two frameworks. For the longest time I’ve been a big fan of Rhino Mocks and have often written about it glowingly. When Moq came on the scene, I remained blissfully ignorant...

Rhino Mocks + Extension Methods + MVC == Crazy Delicious

UPDATE: This content is a bit outdated as these interfaces have changed in ASP.NET MVC since the writing of this post. One task that I relish as a PM on the ASP.NET MVC project is to build code samples and sample applications to put the platform through its paces and try to suss out any problems with the design or usability of the API. Since testability is a key goal of this framework, I’ve been trying to apply a Test Driven Development (TDD) approach as I build out the sample applications. This has led to some fun discoveries in terms of using...

Unit Testing Security Example

This is a simple little demonstration of how to write unit tests to test out a specific role based permission issue using NUnit/MbUnit and Rhino Mocks. In Subtext, we have a class named FileBrowserConnector that really should only ever be constructed by a member of the Admins role. Because this class can write to the file system, we want to take extra precautions other than simply restricting access to the URL in which this object is created. Here are two tests I wrote to begin with. [Test] [ExpectedException(typeof(SecurityException))] public void NonAdminCannotCreateFileConnector() { new FileBrowserConnector(); } [Test] public void AdminCanCreateFileConnector() { MockRepository mocks = new MockRepository(); IPrincipal principal; using (mocks.Record()) ...

Setting PropertyBehavior On All Properties With Rhino Mocks

Although I am a big fan of Rhino Mocks, I typically favor State-Based over Interaction-Based unit testing, though I am not totally against Interaction Based testing. I often use Rhino Mocks to dynamically create Dummy objects and Fake objects rather than true Mocks, based on this definition given by Martin Fowler. Dummy objects are passed around but never actually used. Usually they are just used to fill parameter lists. Fake objects actually have working implementations, but usually take some shortcut which makes them not suitable for production (an in memory database...

Rhino Mocks 3.0 Released!

Ayende just announced the release of Rhino Mocks 3.0. The downloads are located here. If you aren’t subscribed to Ayende’s blog, I highly recommend it. This guy never sleeps and churns out code like a tornado. Ever since I discovered mocking frameworks in general, and especially Rhino Mocks, mocking has become an essential part of my unit testing toolkit. A while ago I wrote a short intro demonstrating how to write unit tests for events defined by an interface. This small example shows the usefulness of something like Rhino Mocks. If you’re wondering what the difference between a mocks, stubs, and fakes, be...

[Tip Jar] Unit Test Events With Anonymous Delegates

Here we are already looking ahead to learn about the language features of C# 3.0 and I am still finding new ways to make my code better with good “old fashioned” C# 2.0. Like many people, I tend to fall into certain habits of writing code. For example, today I was writing a unit test to test the source of a particular event. I wanted to make sure that the event is raised and that the event arguments were set properly. Here’s the test I started off with (some details changed for brevity) which reflects how I would do this in the old days. private bool eventRaised...

Using Rhino Mocks To Unit Test Events on Interfaces

I am working on some code using the Model View Presenter pattern for an article I am writing. I am using an event based approach based on the work that Fowler did. For the sake of this discussion, here is an example of a simplified view interface. public interface IView { event EventHandler Load; } In the spirit of TDD I follow this up with the shell of my Presenter class public class Presenter { public Presenter(IView view) { throw new NotImplementedException("Not implemented."); } } And...