从控制台删除标准输出消息 Window
Removing Standard Output Messages from Console Window
我正在使用 vstest 在本地执行测试。
"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe\" "C:\Debug\Solution.dll /Tests:VerifyTest1,VerifyTest2 /Logger:trx"
通过控制台我收到类似这样的输出 -
Passed VerifyTest1
Failed VerifyTest2
Standard Output Messages:
TestContext Messages:
1/29/2016 21:50:00 - START - START : [VerifyTest2]
1/29/2016 21:50:00 - INFO - Operating System - Microsoft Windows 10 Enterprise
1/29/2016 21:50:00 - INFO - Test Environment - Test1
1/29/2016 21:50:00 - INFO - Test Environment - Test1
1/29/2016 21:50:00 - INFO - File updated
1/29/2016 21:50:02 - INFO - Login Complete! via UI API's
1/29/2016 21:50:03 - INFO - eb481527-49f6-49bc-a9ca-9ccf4e10d12a submitted successfully.
1/29/2016 21:50:11 - PASS - Return created through UI
1/29/2016 21:50:11 - INFO - Checking Process launched or NOT
1/29/2016 21:50:11 - INFO - Process: My.CommonUIFramework.Shell is launched
1/29/2016 21:50:11 - INFO - Terminating the Process: My.CommonUIFramework.Shell
1/29/2016 21:50:11 - INFO - Checking Process launched or NOT
1/29/2016 21:50:11 - INFO - Process: My.Xion.DataMigration.UI is NOT launched
1/29/2016 21:50:12 - INFO - Launched the Application : My.CommonUIFramework.Shell
1/29/2016 21:50:12 - INFO - Checking Process launched or NOT
现在,当控制台上的测试失败时,我不想要包含所有信息的调试跟踪。我只想在控制台上获得通过或失败的结果。有没有办法做到这一点。我知道我可以在 trx 文件上看到结果,但我只是想知道有没有办法在控制台上抑制调试跟踪或标准输出消息。
您可能想要禁用跟踪日志。您可以通过多个渠道进行。根据您的 VSTS 和 .Net 版本,按照此处所述进行尝试。 https://msdn.microsoft.com/en-us/library/jj159363(v=vs.120).aspx
0是禁用跟踪的设置。
使用 MSTest 而不是 VSTest 解决了我的问题。
我正在使用 vstest 在本地执行测试。
"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe\" "C:\Debug\Solution.dll /Tests:VerifyTest1,VerifyTest2 /Logger:trx"
通过控制台我收到类似这样的输出 -
Passed VerifyTest1
Failed VerifyTest2
Standard Output Messages:
TestContext Messages:
1/29/2016 21:50:00 - START - START : [VerifyTest2]
1/29/2016 21:50:00 - INFO - Operating System - Microsoft Windows 10 Enterprise
1/29/2016 21:50:00 - INFO - Test Environment - Test1
1/29/2016 21:50:00 - INFO - Test Environment - Test1
1/29/2016 21:50:00 - INFO - File updated
1/29/2016 21:50:02 - INFO - Login Complete! via UI API's
1/29/2016 21:50:03 - INFO - eb481527-49f6-49bc-a9ca-9ccf4e10d12a submitted successfully.
1/29/2016 21:50:11 - PASS - Return created through UI
1/29/2016 21:50:11 - INFO - Checking Process launched or NOT
1/29/2016 21:50:11 - INFO - Process: My.CommonUIFramework.Shell is launched
1/29/2016 21:50:11 - INFO - Terminating the Process: My.CommonUIFramework.Shell
1/29/2016 21:50:11 - INFO - Checking Process launched or NOT
1/29/2016 21:50:11 - INFO - Process: My.Xion.DataMigration.UI is NOT launched
1/29/2016 21:50:12 - INFO - Launched the Application : My.CommonUIFramework.Shell
1/29/2016 21:50:12 - INFO - Checking Process launched or NOT
现在,当控制台上的测试失败时,我不想要包含所有信息的调试跟踪。我只想在控制台上获得通过或失败的结果。有没有办法做到这一点。我知道我可以在 trx 文件上看到结果,但我只是想知道有没有办法在控制台上抑制调试跟踪或标准输出消息。
您可能想要禁用跟踪日志。您可以通过多个渠道进行。根据您的 VSTS 和 .Net 版本,按照此处所述进行尝试。 https://msdn.microsoft.com/en-us/library/jj159363(v=vs.120).aspx
0是禁用跟踪的设置。
使用 MSTest 而不是 VSTest 解决了我的问题。