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

Ask A Question

Stats

  • Questions 78k
  • Answers 78k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer There are three types of standards behaviour you should be… May 11, 2026 at 3:51 pm
  • added an answer I found out what was wrong. I was using a… May 11, 2026 at 3:51 pm
  • added an answer Spring does have transaction management. You can define a DataSource… May 11, 2026 at 3:51 pm

Related Questions

Using the new Rhino Mocks 3.5 Arrange/Act/Assert (AAA) Testing style, I'm having problems writing
There are lots of mocking frameworks out there for .Net. There is no clear
I want to assert that a method is called exactly one time. I'm using
The following test case fails in rhino mocks: [TestFixture] public class EnumeratorTest { [Test]
Could someone explain why both tests using the latest versions of Moq and Rhino.Mocks

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.