我让 Visual Studio 为班上的每个成员创建了一个测试。这是一个例子:
/// <summary>
///A test for CloseCurrentTextLogFile
///</summary>
[TestMethod()]
public void CloseCurrentTextLogFileTest()
{
Logger.CloseCurrentTextLogFile();
Assert.Inconclusive( "A method that does not return a value cannot be verified." );
}
基于断言字符串,我想知道如何测试这个......有什么想法吗?