Visual Studio会在“测试详细信息摘要”窗口中截断消息

时间:2019-06-23 16:17:26

标签: visual-studio nunit vstest

我进行了比较两个json对象的测试。如果测试失败,那么我将打印这些json对象。

!important

但是button { font-size: 87.5%; font-family: "ubuntu", Sans-serif; padding: 0 16px; min-width: 64px; height: 36px; cursor: pointer; background-color: royalblue; color: white; border: 0; } button:focus, button:active { outline: none; outline: 0; outline: none !important; outline: 0 !important; }截断了我的消息:( <button type="button">TEST</button>的消息也被截断了。

如何增加邮件长度限制?

1 个答案:

答案 0 :(得分:0)

我已经通过将测试结果保存到xml文件中暂时解决了这个问题。

要实现此目的,您应该创建.runsettings文件。

<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
  <RunConfiguration>
    <ResultsDirectory>ResultsDirectory</ResultsDirectory>
  </RunConfiguration>
  <NUnit>
    <TestDirectory>TestDirectory</TestDirectory>
    <WorkDirectory>WorkDirectory</WorkDirectory>
    <TestOutputXml>TestOutputXml</TestOutputXml>
    <InternalTraceLevel>Info</InternalTraceLevel>
  </NUnit>
</RunSettings>