Automated Unit testing - why? what? which?

前端 未结 6 1116
旧巷少年郎
旧巷少年郎 2020-12-23 16:30

I am a C# winforms developer with an experience of around a year. The only unit testing that I have been doing till now has been manual. I have thinking about following for

6条回答
  •  有刺的猬
    2020-12-23 17:15

    The why for automated unit testing is simple: because as your code grows, it will take longer and longer to do manual testing, which means you are less and less likely to do it.

    By automating the tests, you make them convenient to run, so they will be run.

提交回复
热议问题