如何在 Visual Studio 的 R# 单元测试会话窗口中通过单元测试输出彩色文本?
如何在 Visual Studio 的 ReSharper 单元测试会话窗口中通过单元测试输出彩色文本。我正在使用 Resharper VS 插件,我认为它会生成单元测试窗口。
我将其与 nunit 一起使用,并希望使用 c# Console.Write 在此窗口中生成彩色文本。
How do I output coloured text from by unit tests in the ReSharper Unit Test Session window in Visual Studio. I am using Resharper VS addin which I think produces the Unit Test Window.
I am using this with nunit and wish to use c# Console.Write to generate coloured text to this window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这是不可能的,因为 log4net ColoredConsoleAppender 的输出在 Resharper 测试运行程序中是黑白的。
I think it is not possible because the output of log4net ColoredConsoleAppender is black and white in Resharper test runner.
我认为这是不可能的。您可以使用
Debug.WriteLine()
或Console.WriteLine()
将文本写入此窗口。您想如何传递有关颜色的信息?我尝试了两次:
HTML
未解析richtext
格式未解析我没有其他想法,我不认为它以某种方式工作。
It is not possible in my opinion. You write text to this window by using
Debug.WriteLine()
orConsole.WriteLine()
.How do you want to pass information about the color? I gave it two tries:
HTML
is not parsedrichtext
format is not parsedI have no other idea and I don't think that it is working somehow.