DR-我正在寻找 xUnit 的相当于 MSTest 的 AssemblyInitialize
(也就是我喜欢的 ONE 特性)。
具体来说,我正在寻找它,因为我有一些 Selenium 烟雾测试,我希望能够在没有其他依赖项的情况下运行。我有一个 Fixture,它会为我启动 IisExpress,然后在处理时杀死它。但是在每个测试之前这样做会使运行时大大膨胀。
I would like to trigger this code once at the start of testing, and dispose of it (shutting down the process) at the end. How could I go about doing that?
即使我可以通过编程访问诸如“当前正在运行多少个测试”之类的内容,我也可以弄清楚一些事情。