Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8737681
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:34:48+00:00 2026-06-13T10:34:48+00:00

Using Rhino Mocks 3.6, given the code below I would expect the AssertWasCalled assertion

  • 0

Using Rhino Mocks 3.6, given the code below I would expect the AssertWasCalled assertion to pass, but it does not. Instead there is the failed assertion message:

“Rhino.Mocks.Exceptions.ExpectationViolationException:
IBar.set_Model(7); Expected #1, Actual #0.”

Trying IgnoreArguments() does not change the result, but changing the IBar property to a method and asserting the method is called with the argument does work.

What am I missing here?

using Microsoft.VisualStudio.TestTools.UnitTesting;
using Rhino.Mocks;

public interface IFoo { }
public interface IBar { int Model { get; set; } }
public class Bar : IBar { public int Model { get; set; } }

public class Foo : IFoo
{
    public void MyMethod(IBar bar)
    {
        bar.Model = 7;
    }
}

[TestClass]
public class TestFoo
{
    [TestMethod]
    public void MyMethod()
    {
        var foo = new Foo();

        var mockBar = MockRepository.GenerateStub<IBar>();
        foo.MyMethod(mockBar);

        mockBar.AssertWasCalled(b => b.Model = 7);
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T10:34:49+00:00Added an answer on June 13, 2026 at 10:34 am

    If you are stubbing your bar object, then you should make assertion on value of property

    Assert.AreEqual(7, mockBar.Name);
    

    If you want to test expectation, you should generate mock instead of stub

    var mockBar = MockRepository.GenerateMock<IBar>();
    foo.MyMethod(mockBar);
    mockBar.AssertWasCalled(b => b.Model = 7);
    

    Difference between stubs and mocks:

    A mock is an object that we can set expectations on, and which will
    verify that the expected actions have indeed occurred. A stub is an
    object that you use in order to pass to the code under test. You can
    setup expectations on it, so it would act in certain ways, but those
    expectations will never be verified
    . A stub’s properties will
    automatically behave like normal properties, and you can’t set
    expectations on them.

    If you want to verify the behavior of the code under test, you will
    use a mock with the appropriate expectation, and verify that. If you
    want just to pass a value that may need to act in a certain way, but
    isn’t the focus of this test, you will use a stub.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to mock a static method using Rhino.Mocks? If Rhino does not
I have just crafted the following test using Rhino mocks. Does my test look
Does anyone have an implementation lying around of an auto-mock container using Rhino Mocks
I am using Rhino Mocks and I'm not sure how to mock a call
I have the following code: using System; using NUnit.Framework; using Rhino.Mocks; public class A
Here's sort of what I have (using Rhino Mocks, but that isn't central to
Are there any ways to mock a WCF client proxy using Rhino mocks framework
I'm using Rhino.Mocks for testing the system. I'm going to check the order of
We are using Rhino Mocks to perform some unit testing and need to mock
I'm using Rhino.Mocks 3.6 for the first time. I'm trying to create a stub

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.