- Building Microservices with .NET Core 2.0(Second Edition)
- Gaurav Aroraa
- 142字
- 2021-07-02 20:12:57
Testing
We are going to introduce automated testing as a solution to our prior problems, those we faced while testing during deployment. In this part of the solution, we have to pide our testing approach as follows:
- Adopt Test-Driven Development (TDD). With TDD, a developer is required to test his or her own code. The test is nothing but another piece of code that could validate whether the functionality is working as intended. If any functionality is found to not satisfy the test code, the corresponding unit test fails. This functionality can be easily fixed, as you know this is where the problem is. In order to achieve this, we can utilize frameworks such as MS test or unit tests.
- The QA team can use scripts to automate their tasks. They can create scripts by utilizing QTP or the Selenium framework.
推薦閱讀
- LabVIEW 2018 虛擬儀器程序設(shè)計(jì)
- Kali Linux Web Penetration Testing Cookbook
- Objective-C應(yīng)用開發(fā)全程實(shí)錄
- WebAssembly實(shí)戰(zhàn)
- 自己動(dòng)手實(shí)現(xiàn)Lua:虛擬機(jī)、編譯器和標(biāo)準(zhǔn)庫
- SQL Server 2012數(shù)據(jù)庫技術(shù)及應(yīng)用(微課版·第5版)
- 算法大爆炸:面試通關(guān)步步為營
- 編寫高質(zhì)量代碼:改善Python程序的91個(gè)建議
- Access 2010數(shù)據(jù)庫基礎(chǔ)與應(yīng)用項(xiàng)目式教程(第3版)
- Python高效開發(fā)實(shí)戰(zhàn):Django、Tornado、Flask、Twisted(第2版)
- Mastering Swift 2
- Functional Kotlin
- Apex Design Patterns
- Linux C編程:一站式學(xué)習(xí)
- Python機(jī)器學(xué)習(xí)算法: 原理、實(shí)現(xiàn)與案例