- C# and .NET Core Test Driven Development
- Ayobami Adewole
- 156字
- 2021-06-25 22:00:30
Writing the tests
This is the initial step of the technique, where you have to write the tests that describe a component or feature to be developed. The component can be the user interface, business rule or logic, data persistence routine, or a method implementing a specific user requirement. The tests need to be brief and should contain the required data input and desired outcome expected by the component being tested.
While writing the tests, technically you have solved half of the development task, because the design of the code is usually conceived through the thought pattern and process put into writing the tests. It becomes easier to tackle the difficult code after the easier code, which is the test that has been written. At this point, as a TDD newcomer, the tests are not expected to be 100% perfect or have full code coverage, but with continuous practice and adequate refactoring, this can be achieved.
- ExtGWT Rich Internet Application Cookbook
- Mastering Visual Studio 2017
- Android應用程序開發與典型案例
- DevOps with Kubernetes
- ASP.NET Core Essentials
- Java開發入行真功夫
- 從0到1:Python數據分析
- 微信小程序項目開發實戰
- Java面向對象程序設計
- 微服務從小白到專家:Spring Cloud和Kubernetes實戰
- Go語言底層原理剖析
- Mastering Concurrency Programming with Java 9(Second Edition)
- Python第三方庫開發應用實戰
- Access數據庫應用教程(2010版)
- 算法精解:C語言描述