当前测试状态 xUnit.net
Current test status in xUnit.net
如何获取当前执行测试的状态?我想在 Dispose() 方法中知道当前测试是否失败。这应该类似于mstest的
TestContext.CurrentTestOutcome.
我在 xunit 网站上问过同样的问题,我也可以在这里分享答案。
基本上根据 https://github.com/xunit/xunit/issues/398 there is no way to know test status inside the test. Also according to https://github.com/xunit/xunit/issues/416 xunit 中没有 TestContext 这样的东西。
如何获取当前执行测试的状态?我想在 Dispose() 方法中知道当前测试是否失败。这应该类似于mstest的 TestContext.CurrentTestOutcome.
我在 xunit 网站上问过同样的问题,我也可以在这里分享答案。 基本上根据 https://github.com/xunit/xunit/issues/398 there is no way to know test status inside the test. Also according to https://github.com/xunit/xunit/issues/416 xunit 中没有 TestContext 这样的东西。