我正在尝试运行一些测试,但是当我尝试时,测试永远不会完成,它卡在进行中,我可以阻止它的唯一方法是重新启动 VS,我用谷歌搜索,似乎找不到我在寻找。
[TestMethod()]
public void fahrenheitToCelsiusBoilingTest()
{
float fahrenheit = 212F;
float expected = 100F; // TODO: Initialize to an appropriate value
float actual;
actual = Form1.FahrenheitToCelsius(fahrenheit);
Assert.AreEqual(Math.Round(expected, 2), Math.Round(actual, 2));
//Assert.Inconclusive("Verify the correctness of this test method.");
}