gpt4 book ai didi

c# - 如何从 [TestMethod] Console.WriteLine?

转载 作者:IT王子 更新时间:2023-10-29 04:46:09 32 4
gpt4 key购买 nike

<分区>

我正在尝试显示来自 [TestMethod] 方法的一些信息。

通常我们使用 NUnit 并且带有 Console.WriteLine 的行运行良好,我们可以在“输出”窗口中看到它,但是在这个项目中我们必须使用嵌入 VS2010 和 的测试工具>Console.WriteLine 没有运行,因为我们看不到任何东西。

我想要的是或多或少以这种方式在“输出”窗口上显示跟踪消息:

using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;


namespace Test1
{
[TestClass]
public class TestNum1
{
[TestMethod]
public void Constructors()
{
for (int b = 1; b < 99; b++) {
Console.WriteLine(b.ToString()); // <<<<<<< This don't show on Output.
Assert.AreEqual(b, b); // This is only a silly sample.
}
}
}
}

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com