Programming/C#
2019. 9. 13.
테스트 자동화
Benefits of automated Testing Test your code frequently, in less time Catch bugs before deploying Deploy with confidence Refactor with confidence Focus more on the quality Refactoring means chaging the structure of the code without changing its behavior. Types of tests Unit Test : Tests a unit of an application without its external dependencies. Cheap to write , Execute fast, Don't give a lot of..