作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 ASP.NET Core 6 中,默认模板将所有内容从 Sturtup.cs
移动进入 Program.cs
, 并在 Program.cs 中使用顶级语句,因此没有更多(可说的)Program
类以太。
这看起来很棒,但现在,我需要测试所有这些。 WebApplicationFactory<T>
仍然希望我通过入口点类,但我不能这样做(因为它的名字现在无法说出)。
如何在 ASP.NET Core 6 中配置集成测试?
最佳答案
问题已在 ASP.NET Core RC1 上解决,但截至目前(2021 年 9 月 20 日)文档不完整。
编译器生成 Program
可以与 WebApplicationFactory<>
一起使用的幕后类.该类(class)不是公开的,所以 InternalsVisibleTo
应使用项目设置。
Damien Edwards' Minimal API sample用途 the latest nightly bits .测试 Web 应用程序类声明为:
internal class PlaygroundApplication : WebApplicationFactory<Program>
{
private readonly string _environment;
public PlaygroundApplication(string environment = "Development")
{
_environment = environment;
}
protected override IHost CreateHost(IHostBuilder builder)
{
...
在应用项目文件中,
InternalsVisibleTo
用于制作
Program
测试项目可见的类:
<ItemGroup>
<InternalsVisibleTo Include="MinimalApiPlayground.Tests" />
</ItemGroup>
RC1 功能齐全,从以前的主要版本来看,它可能是第一个拥有
Go Live
的版本。许可证,这意味着它在生产中受支持。
关于asp.net-core - 如何在 .net6 中使用 WebApplicationFactory(没有口语入口点),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69058176/
我是一名优秀的程序员,十分优秀!