使用 C# 为容器化应用程序编写单元测试记录器
我有一个 C# 容器化 xUnit 应用程序,我想在其中运行测试。 我的一个测试如下:
[Fact]
public void Add_adds_user_properly()
{
//Testing...
}
每当我在容器内执行 dotnet test
命令时,我都会看到类似这样的内容:
Passed! - Failed: 0, Passed: 1, Skipped: 0, Total: 1, Duration: 1 s -
Test.Unit.dll (net5.0)
但是当我的测试通过时,我正在寻找类似的内容:
Add_adds_user_properly() <with green color>
或者当它失败时:
Add_adds_user_properly() <with red color>
任何感谢推荐。
I have a containerized xUnit application in C#, in which I want to run my tests.
One of my tests is like:
[Fact]
public void Add_adds_user_properly()
{
//Testing...
}
Whenever I execute dotnet test
command inside my container, i see something like this:
Passed! - Failed: 0, Passed: 1, Skipped: 0, Total: 1, Duration: 1 s -
Test.Unit.dll (net5.0)
But I'm looking for something like this when my test passes:
Add_adds_user_properly() <with green color>
Or when it fails:
Add_adds_user_properly() <with red color>
Any recommendation is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论