Visual Studioに、クラスの各メンバーのテストを作成してもらいました。これが1つの例です:
/// <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." );
}
アサート文字列に基づいて、これをテストする方法を考えています...何かアイデアはありますか?