admin管理员组文章数量:1344979
How can I instantiate an Azure function in e.g. integration tests through dependency injection?
Consider the following function:
public class CheckApplications(IGovernanceService governanceService, ILogger<CheckApplications> logger)
{
[Function(nameof(CheckApplications))]
public async Task CheckApplicationsTimerTrigger(
[TimerTrigger("0 0 12 * * *", RunOnStartup = false)] TimerInfo myTimer,
FunctionContext context,
CancellationToken cancellationToken)
{
...
}
}
As there is no Microsoft.AspNetCore.Mvc.Testing
package for Azure functions, I want to integration test my functions by instantiating them in code.
However, I can't see that the individual functions are present in the service collection, so how would I instantiate them in this case?
本文标签:
版权声明:本文标题:c# - How can I instantiate an Azure function in e.g. integration tests through dependency injection? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743789477a2539297.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论