TDD in ASP.NET MVC: where to start?

I would like to start with TDD in ASP.NET NVC. Getting links pointing me to some resources for absolute beginners on this subject would be helpful. (why, when, how to write tests).

In addition, some tips on how to deal with this topic are welcome.

thanks for the help

+4
source share
5 answers

Departure:

http://stephenwalther.com/blog/category/9.aspx 

He usually has good things that are easy to understand for beginners.

0
source

I think TDD is a tough topic to get started, you should pick up a good heavy book, and not try to gather information from blogs. I scraped it a bit without studying the material, but I never had a moment of aha until I read this book: http://xunitpatterns.com/ . Therefore, I would recommend this book.

0
source

Here's a walkthrough of Test Driven Development using ASP.NET MVC and a basic introduction to Test Design (TDD) . I also suggest looking for TDD and Behavior Driven Development (BDD) content on InfoQ and Google Lectures on YouTube.

0
source

I found a book

alt text

ASP.NET MVC 1.0 Tested Development: Problem - Design - Solution

Emad Ibrahim must be very well written and very easy to approach TDD using ASP.Net MVC.

I think itโ€™s easier to start with this than to extract information from different (as if brilliant) sources.

0
source

Source: https://habr.com/ru/post/1308080/


All Articles