Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get mock instance from a instance using Moq?

Tags:

c#

moq

suppose I have this interface and this class:

public interface IScheduler
{
    void StopTimer();

    // some other methods
}

public class Scheduler : IScheduler
{
    private static readonly IScheduler scheduler = new Scheduler();

    private readonly Timer timer;

    public Scheduler()
    {
        refreshTimer = new Timer
        {
            Enabled = false,
            AutoReset = false
        };
    }

    public static IScheduler GetScheduler()
    {
        return scheduler;
    }

    public void StopTimer()
    {
        timer.Stop();
    }

    // some other methods
}

So I was wondering if I could get a mock instance from the GetScheduler method. I tried something like this:

[TestMethod]
public void Execute_ButtonClicked_StopTimer()
{
    // arrange
    var mockScheduler = Mock.Get(Scheduler.GetScheduler());
    var command = GetCommandInstance();

    // act
    command.Execute();

    // assert
    mockScheduler.Verify(m => m.StopTimer());
}

but didn't work, it says "System.ArgumentException: Object instance was not created by Moq."

Any advice, please?

inside the command class there is something like this:

public void Execute()
{
    // some code
    Scheduler.GetScheduler().StopTimer();
}
like image 860
Renato Pereira Avatar asked Jun 12 '18 21:06

Renato Pereira


People also ask

Can you mock a class with Moq?

You can use Moq to create mock objects that simulate or mimic a real object. Moq can be used to mock both classes and interfaces. However, there are a few limitations you should be aware of. The classes to be mocked can't be static or sealed, and the method being mocked should be marked as virtual.

What can be mocked with Moq?

Unit testing is a powerful way to ensure that your code works as intended. It's a great way to combat the common “works on my machine” problem. Using Moq, you can mock out dependencies and make sure that you are testing the code in isolation. Moq is a mock object framework for .

How does Moq mock work?

Mock objects allow you to mimic the behavior of classes and interfaces, letting the code in the test interact with them as if they were real. This isolates the code you're testing, ensuring that it works on its own and that no other code will make the tests fail.

Why do we use Moq in unit testing?

Moq is a mocking framework built to facilitate the testing of components with dependencies. As shown earlier, dealing with dependencies could be cumbersome because it requires the creation of test doubles like fakes. Moq makes the creation of fakes redundant by using dynamically generated types.


1 Answers

I propose a different approach which avoids the need to do so...

The Scheduler class is implementing the singleton pattern to control its construction. You need to be able to abstract the things which depend upon an IScheduler away from the way it is constructed. So something else should have the responsibility of managing the construction of the scheduler: it shouldn't do that itself because construction is not that class's responsibility (single responsibility principle).

Common approaches to this are to use the Gang-of-Four Factory method pattern, or a service locator pattern (e.g. Microsoft's UnityContainer). Either of these can be directed to expose that class as a singleton, leaving the class as just an implementation of what the class is responsible for.

Dependency Injection completes the jigsaw because when classes have their dependencies injected, then they themselves are abstracted away from the construction of the things which they use. So a class which needs a IScheduler would have one injected and use that.

With these patterns in place, the need to do what's being requested in the question vanishes, and leads to code with clear separation of concerns.

Footnote: I know these pattern things can look daunting, and it can seem that it's adding a lot of effort to do this, and it can be hard to see the benefit; but trust me: try this (and I really mean try it, you can't just have a half-hearted attempt, because it is quite a step change in approach). I used to write code just like you've posted. I was advised to look at these patterns. I had severe doubts, but I have never looked back, and now I write all my code this way.

like image 72
Richardissimo Avatar answered Oct 23 '22 04:10

Richardissimo