- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Windows-アプリケーション/Visual Studio/単体テスト へ行く。
- 1 (2014-02-20 (木) 21:31:35)
単体テスト
テストメソッドの中でDebug.Write()を使う
namespace WebApplication1.Tests.Controllers { [TestClass] public class UnitTest1 { [TestMethod] public void TestMethod1() { Trace.WriteLine("DEBUG: Tace"); Debug.WriteLine("DEBUG: Debug"); Console.WriteLine("DEBUG: Console");
Assert.IsTrue(true); } } }
テストを実行後、テストエクスプローラーで目的のテストメソッドを選択すると「出力」というリンクがあるので、それをクリックすると、テスト出力が表示されたウィンドウが開く。
参考
http://stackoverflow.com/questions/8562888/unit-testing-mvc-controllers