- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- dotNet-ASP.NET MVC/単体テスト へ行く。
- 1 (2014-02-20 (木) 20:51:44)
- 2 (2014-02-23 (日) 18:12:37)
単体テスト
テストプロジェクトの作成
テストコード
using Microsoft.VisualStudio.TestTools.UnitTesting; using WebApplication1; using WebApplication1.Controllers; namespace WebApplication1.Tests.Controllers { [TestClass] public class HomeControllerTest { [TestMethod] public void Index() { // Arrange HomeController controller = new HomeController(); // Act ViewResult result = controller.Index() as ViewResult; // Assert Assert.IsNotNull(result); } } }
コントローラーのテスト
参考
http://stackoverflow.com/questions/8562888/unit-testing-mvc-controllers