vote up 1 vote down star

I need to mock just Method1 to test my process exception. How I can do that?

public interface IFoo
{
    void Method1();
    object Method2();
}
public class Foo : IFoo
{
    public void Method1()
    {
        // Do something
    }

    public object Method2()
    {
        try
        {
            // Do something
            Method1();
            // Do somenthing

            return new object();
        }
        catch (Exception ex)
        {
            // Process ex
            return null;
        }
    }
}
flag

try "you're only just a method, you're only just a method" in a sing-song voice ;-) – Steven A. Lowe Aug 12 at 20:32
You shouldn't be mocking Method1() while testing Method2(), this would mean that you're testing the mock object. There's probably too much going on in one class and room to break it apart. (usually in these types of cases) – Chris Missal Aug 13 at 5:30

3 Answers

vote up 4 vote down check
fooMock =  MockRepository.GenerateStub<IFoo>();
fooMock.Stub(x => x.Method1()).Return("Whatever");
link|flag
It doesn't solve my problem, but give me the light. Thank you! – Zote Aug 12 at 20:38
vote up 0 vote down

Just the one method?

Either a mocking framework or if that's overkill considering you only want to mock one method you have a second option.

Mark the method virtual, create a mock class yourself that extends the concrete class and have it return or do what you want.

link|flag
vote up 0 vote down

The interface is a red herring. You'll have to mock the implementation Foo and change Method1 to be virtual:

...
public virtual void Method1()
...

Use the throw extension to create the exception you wish to handle:

var fooMock = MockRepository.GenerateStub<Foo>();
fooMock.Expect(foo => foo.Method1()).Throw(new Exception());

var actual = fooMock.Method2();
Assert.IsNull(actual);

fooMock.VerifyAllExpectations();
link|flag
I think you can only stub Interfaces ... (but I could be wrong) – Martin Aug 13 at 1:54

Your Answer

Get an OpenID
or

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