三种测试
Posted qinqiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三种测试相关的知识,希望对你有一定的参考价值。
Unit testing means testing individual modules of an application in isolation (without any interaction with dependencies) to confirm that the code is doing things right.
-- 只测试单个模块代码, 和其他没有关系 (单个)
Integration testing means checking if different modules are working fine when combined together as a group.
-- 测试这个模块和其他模块的交互功能 (一组)
Functional testing means testing a slice of functionality in the system (may interact with dependencies) to confirm that the code is doing the right things.
-- 界面? (功能测试, 某个功能测试)
以上是关于三种测试的主要内容,如果未能解决你的问题,请参考以下文章