vote up 2 vote down star

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 takes parameters and remove the one that doesn't take parameters:

public class MyClass{
     public MyClass(MyOtherClass instance) {}
}

I tend to get an exception:

System.MissingMethodException : Can't find a constructor with matching arguments

I've tried putting in nulls in my call to Mock or Stub, but it doesn't work.

Can I create mocks or stubs of concrete classes with Rhino Mocks, or must I always supply (implicitly or explicitly) an parameter-less constructor?

flag

3 Answers

vote up 4 vote down check

Yep. Just pass in the parameters in your CreateMock() call:

// New FruitBasket that can hold 50 fruits.
MockRepository mocks = new MockRepository();
FruitBasket basket = mocks.CreateMock<FruitBasket>(50);
link|flag
vote up 0 vote down

You have to pass them in after your DynamicMock<T> statement, which takes a parameter array as an argument. Unfortunately there's no type checking on it, but it will call the appropriate constructor if you match up your arguments to the signature.

For example:

var myMock = MockRepository.DynamicMock<MyClassWithVirtuals>(int x, myObj y);
link|flag
vote up 0 vote down

My mistake is that I was attempting to pass nulls to the CreateMock or GenerateMock call, as soon as I generated a a non-null parameter for the constructor, the calls to create the mock or stub began working.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.