如何使用Moq来单元测试函数作为参数的方法

本文关键字:参数 方法 函数 何使用 Moq 单元测试 | 更新日期: 2023-09-27 18:08:25

我的静态方法如下:问题是我的代码没有注入对象/类实现接口,但它使用Func作为方法参数。如何用Moq模拟它?

public class Repeater
    {
        const int NumberOfReapetsWithException = 5;
        public static async Task<string> RunCommandWithException(Func<string, Task<string>> function, string parameter,
             ILoggerService logger = null, string messageWhileException = "Exception while calling method for the {2} time", bool doRepeatCalls = false)
        {
            int counter = 0;
            var result = "";
            for (; true; )
            {
                try
                {
                    result = await function(parameter);
                    break;
                }
                catch (Exception e)
                {
                    if (doRepeatCalls)
                    {
                        string message = HandleException<string, string>(parameter, null, logger, messageWhileException, ref counter, e);
                        if (counter > NumberOfReapetsWithException)
                        {
                            throw;
                        }
                    }
                    else
                    {
                        throw;
                    }
                }
            }
            return result;
        }
...
}   }

如何使用Moq来单元测试函数作为参数的方法

当有一个Func对象作为参数时,你可以简单地发送想要的模拟行为(当使用Moq时,你创建一个对象,然后用模拟委托设置它的行为)。

    [TestCase] // using nunit
    public void sometest()
    {
        int i = 0;
        Func<string, Task<string>> mockFunc = async s =>
        {
            i++; // count stuff
            await Task.Run(() => { Console.WriteLine("Awating stuff"); });
            return "Just return whatever";
        };
        var a = Repeater.RunCommandWithException(mockFunc, "mockString");
    }