Kris Krause .NET Meister

"If it is fast and ugly, they will use it and curse you; if it is slow, they will not use it."
- David Cheriton, The Art of Computer Systems Performance Analysis

Monday, June 29, 2009

Concrete Example - Mocking .NET Objects w/NUnit

Geoff Lane does a very good job of explaining .NET Mock objects.

People were requesting a "concrete" example so I implemented an example C# console application (although this can easily be made into an ASP.NET web application).

Geoff hints to using Spring .NET to wire things up, but that might be too confusing for some people. And maybe a little over board for a simple example (open closed principle).

So instead I created a PersonServiceManager that creates a "concrete" PersonService via IPersonRepository injection. The GUI communicates to the PersonServiceManager through an IPersonService interface.

Instead of "mocking" an IPersonRepository, we are actually implementing it then injecting it into PersonService (just like our NUnit test). The PersonServiceManager handles passing the appropriate database connection string down to the data layer. In my example, the data layer object PersonDb (which implements IPersonRepository and used for injection) utilizes the DbProviderFactory.

Here is the sample source (C# Console App).

Also remember that the sample source could be broken down into separate assemblies in a real world project.

Labels: ,

2 Comments:

  • I want to quote your post in my blog. It can?
    And you et an account on Twitter?

    By Anonymous Anonymous, at 7:00 AM  

  • thanks for doing this!

    i understand the benefit of using an interface for the repository as we can create alternate implementations or mock versions for the testing, but what other implementations of personservice might there be?

    would this primarily be so we could create a mock? what would we be testing in that case?

    if we wanted to test the presentation layer somehow, couldn't we use the concrete personservice alongside a mock repository?

    By Anonymous Anonymous, at 5:11 PM  

Post a Comment

<< Home