英文:
Is unit testing just testing methods?
问题
I'm a new software developer and the devs are going over the importance of Java Unit Testing. Is Unit Testing just testing the individual java methods? And what is integration testing in relation to unit testing in Java?
我是一名新的软件开发人员,开发人员正在讲解Java单元测试的重要性。单元测试只是测试个别的Java方法吗?与Java单元测试相关的集成测试是什么?
英文:
I'm a new software developer and the devs are going over the importance of Java Unit Testing. Is Unit Testing just testing the individual java methods? And what is integration testing in relation to unit testing in Java?
答案1
得分: 1
单元测试就是简单地通过测试其功能来测试软件的加法功能。集成测试是当您添加另一个功能或模块时,然后测试您打算的功能。
英文:
Unit testing would be something as simple as a testing addition capability of a software by testing out it's function. Integration testing would be when you add another function or module and then you are testing the functionality that you intended.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论