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 143639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:07:38+00:00 2026-05-11T08:07:38+00:00

Using the new Rhino Mocks 3.5 Arrange/Act/Assert (AAA) Testing style, I’m having problems writing

  • 0

Using the new Rhino Mocks 3.5 Arrange/Act/Assert (AAA) Testing style, I’m having problems writing a test.

I have a method that calls a method on a repository class. ActivateFoo, where my Foo object has an IsActive property. The result of the ActivateFoo object should change the property.

Here is sample code:

[TestMethod] public void Should_update_foo_to_active_inside_of_repository() {   // arrange   var repo = MockRepository.GenerateMock<IRepository>();   var foo = new Foo() { ID = 1, IsActive = false };   var target = new Presenter(repo);   repo.Expect(x => x.ActivateFoo(foo)).Return(true);    // act   target.Activate(foo);    // assert   Assert.IsTrue(foo.IsActive);   repo.VerifyAllExpectations();   } 

I’m guessing that the key piece of code would be inbetween ‘ActivateFoo(foo)).’ and ‘Return(true);’.

One point to clarify how the method chaining stuff works behind the scenes, If there is code written on the line I expect, does it matter if it is after Return() or before? (unless of course the solution is using the MethodOptions overload of Expect, or something else).

Thanks in advance for any help.

  • 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. 2026-05-11T08:07:38+00:00Added an answer on May 11, 2026 at 8:07 am

    You might want to try something out like this using the Do handler. I honestly feel ActivateFoo should be void return type. But here’s the code for ActivateFoo with bool return type.

        [TestMethod]     public void Should_update_foo_to_active_inside_of_repository()     {         // arrange         var repo = MockRepository.GenerateMock<IRepository>();         var foo = new Foo() { ID = 1, IsActive = false };         var target = new Presenter(repo);         repo.Expect(x => x.ActivateFoo(foo)).             Do(new ActivateFooDelegate(ActivateFooDelegateInstance));         // act         target.Activate(foo);          // assert         Assert.IsTrue(foo.IsActive);         repo.VerifyAllExpectations();     }      private delegate bool ActivateFooDelegate(Foo f);      public bool ActivateFooDelegateInstance(Foo f)     {         f.IsActive = true;         return f.IsActive;     } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having trouble using Rhino Mocks to assert that a method was called (and
I have just started using Rhino mocks and I am having difficulty doing that.
I have just crafted the following test using Rhino mocks. Does my test look
I am new to Rhino Mocks, and using mock isolation frameworks in general for
I'm using NUnit and Rhino Mocks. I use the AAA-syntax and I do the
I am using .NET 4, NUnit and Rhino mocks. I want to unit test
a have some artefacts when using Rhino Mocks var mocks = new MockRepository(); INotifyMessageSender
I am using Rhino Mocks as a mocking framework for unit testing. I have
I am new to rhino mocks and unit testing in general. I am starting
I'm having a problem with Rhino Mocks. My Test method looks like this: MockRepository

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.