System testing can not only find out the bugs of the system, but also help developers detect the hidden bugs by analyzing the causes and trends of bugs. In the absence of bugs, it is also necessary to consider whether it meets the expectations, so as to eliminate all potential vulnerabilities. So the test objectives are:<br>(1) Find out the bugs in the system.<br>(2) Find out the hidden vulnerability through the logic of the bug.<br>(3) Combing the data logic to achieve a perfect data structure.<br>(4) From the user's point of view, we can examine the rationality of the system to achieve a perfect user experience.<br>The test process of this software is divided into unit test and integration test. Unit test is also called module test, in order to find the internal bugs of each module. Unit test the functions of five system modules one by one. Integration test is also called assembly test and joint test. That is, on the basis of unit test, all modules are assembled into the system according to the design requirements. The system will make the final integration test for the integration of five modules.<br>
正在翻译中..