コード例 #1
0
ファイル: ConsoleColorsTest.cs プロジェクト: coapp/Test
 public void ConsoleColorsConstructorTest()
 {
     ConsoleColor fg = new ConsoleColor(); // TODO: Initialize to an appropriate value
     ConsoleColor bg = new ConsoleColor(); // TODO: Initialize to an appropriate value
     ConsoleColors target = new ConsoleColors(fg, bg);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
コード例 #2
0
ファイル: ConsoleColorsTest.cs プロジェクト: coapp/Test
 public void DisposeTest()
 {
     ConsoleColor fg = new ConsoleColor(); // TODO: Initialize to an appropriate value
     ConsoleColor bg = new ConsoleColor(); // TODO: Initialize to an appropriate value
     ConsoleColors target = new ConsoleColors(fg, bg); // TODO: Initialize to an appropriate value
     target.Dispose();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }