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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:16:53+00:00 2026-05-26T12:16:53+00:00

I am using Moq as my mocking framework and I need to test a

  • 0

I am using Moq as my mocking framework and I need to test a class that when a specific type of exception is run it will keep trying until the situation is resolved once that happens the execution finishes.

So what I need is something similar to:

myMock = Mock<IFoo>();

myMock.Setup(m => m.Excecute()).Throws<SpecificException>();
myMock.Setup(m => m.Execute());

var classUnderTest = MyClass(myMock);
classUnderTest.DoSomething();

Assert.AreEqual(expected, classUnderTest.Result);

Thanks for any help you can give.

  • 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-26T12:16:53+00:00Added an answer on May 26, 2026 at 12:16 pm

    This is one way, based on the Moq QuickStart example of returning different values on each invocation.

    var mock = new Mock<IFoo>();
    var calls = 0;
    mock.Setup(foo => foo.GetCountThing())
        .Returns(() => calls)
        .Callback(() =>
         {
            calls++;
            if (calls == 1)
            {
                throw new InvalidOperationException("foo");
            }
         });
    
    try
    {
        Console.WriteLine(mock.Object.GetCountThing());
    }
    catch (InvalidOperationException)
    {
        Console.WriteLine("Got exception");
    }
    
    Console.WriteLine(mock.Object.GetCountThing());
    

    If the method returns void, use:

    var myMock = new Mock<IFoo>();
    bool firstTimeExecuteCalled = true;
    
    myMock.Setup(m => m.Execute())
          .Callback(() =>
           {
                if (firstTimeExecuteCalled)
                {
                    firstTimeExecuteCalled = false;
                    throw new SpecificException();
                }
           });
    
    try
    {
        myMock.Object.Execute();
    }
    catch (SpecificException)
    {
        // Would really want to call Assert.Throws instead of try..catch.
        Console.WriteLine("Got exception");
    }
    
    myMock.Object.Execute();
    Console.WriteLine("OK!");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are using Moq as our mocking framework, the problem is that type that
I am using Moq as my mocking framework. As per the code below, I
I've been using Moq framework in c# for mocking in unit tests however there
I'm using Moq library. I'm mocking up an instance that does all regular CRUD
I'm trying to work out how this Mock (using the Moq framework) stuff all
I am trying to learn TDD/BDD using NUnit and Moq. The design that I
I'm using Moq & NUnit as a unit test framework. I've written a method
I'm mocking the WebOperationContext class over wrapper for unit testing (using Moq). But I
I have some code in a test using Moq: public class Invoice { ...
I'm very new to Mocking. In the below example i'm using Moq and trying

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.