📜  端到端测试与单元测试 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:19.093000             🧑  作者: Mango

代码示例1
End to end testing is the process of testing
a piece of software from start to finish as
it will be used by the actual users. 
For example a web application, you would start a browser,
navigate to the correct URL, use the application
as intended, and verify the behavior.


UNIT TESTING is a  software testing where individual
units or components of a software are tested.
The purpose is to validate that each unit of the 
software performs as designed.