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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T02:05:35+00:00 2026-05-13T02:05:35+00:00

My test method look like this: [Test] public void Generated_CaseNumber_should_be_set_as_LastCaseNumber_in_PropertiesManager() { String generatedCaseNumber =

  • 0

My test method look like this:

[Test]
    public void Generated_CaseNumber_should_be_set_as_LastCaseNumber_in_PropertiesManager()
    {           

        String generatedCaseNumber = _sut.NextCaseNumber();

    }

_sut object has a dependency to mocked object of type IPropertiesManager. Method _sut.NextCaseNumber() should generate unique CaseNumber, store it in IPropertiesManager (using UpdateLastCaseNumber() method) and then return generated CaseNumber.

How do I assert that _sut.NextCaseNumber() called UpdateLastCaseNumber() on IPropertiesManager type and passed in the same parameter that it then returned to the caller of NextCaseNumber()?

  • 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-05-13T02:05:35+00:00Added an answer on May 13, 2026 at 2:05 am

    Adding something like this should work.

    using (mocks.Record())
    {
        Expect.On(mockObj).Call(mockObj.UpdateLastCaseNumber(param)).Return(param);
    }
    using (mocks.Playback())
    {
        var expected = param;
        var actual = _sut.NextCaseNumber(param);
        Assert.AreEqual(expected, actual);
    }
    

    (mocks = new MockRepository, mockObj = IPropertiesManager)

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

Sidebar

Related Questions

I have a couple of unit test helper extension methods, such as, IsNotEmpty(this string
How can I inject this code into the method Test() ? this.DialogResult = DialogResult.OK;
I'm trying to test a method I have in my application, but I don't
What is the best way to unit test a method that doesn't return anything?
What is the best way to unit test a method that calls into multiple
I'm new to TDD and xUnit so I want to test my method that
Do you write one test per function/method, with multiple checks in the test, or
I'm writing a unit test for a method that packs boolean values into a
It is good practice to use the main method to test a java/.net class?
It is my understanding that I can test that a method call will occur

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.