Mocking Delegates
With Telerik® JustMock you can mock delegates and use all mock capabilities on them. For example, you can assert against their invocation, arrange certain expectations and then pass them to the system under test. This topic explains how you can use that functionality.
Sample Setup
For the examples in this topic, let's assume we have the following Foo
class:
Sample setup
Asserting Delegate Occurrences
You can use JustMock to verify that a delegate is actually called, as demonstrated in Example 1.
Example 1: Test that a delegate inside a method is actually called
The test from Example 1 asserts that, during the execution of the test method, Func<int, int>
is called at least once no matter the integer argument.
You can also verify the order and the number of invocations. For more details about that functionality, check the Asserting Occurrence topic.
Arranging Return Expectation
To test the GetInteger
method in different scenarios, we may need to arrange a specific behavior to the FuncDelegate
. This can be done like this:
Example 2: Change the return value of a delegate
Passing Delegate Mocks in the System Under Test
For the examples in this section, the following DataRepository
class is used:
Sample setup
The first test method will explain how to pass a prearranged delegate mock in the above system under test:
Example 3: Passing a delegate mock as a method argument
The second test method demonstrates how to pass a delegate mock in the above system under test and assert its occurrence instead of invoking its original logic during the test execution.