In our software design process, two main test methods are usually used in the test system: functional testing and structural testing. <br>Functional testing is also called black box testing and data-driven testing, which is to test whether the system functions can operate normally after knowing the specific functions that the system should have. During the test, the system is regarded as a box that cannot be opened, and the test will be performed regardless of the internal structure and characteristics of the system. It only checks whether the system functions are operating normally according to the system specifications, and at the same time detects whether the system can correctly receive input, the correct correspondence between information and output information, and the external information required to maintain the integrity of the system. <br>White box testing is the opposite of black box testing. It understands the specific process of the internal work of the system, and can check whether the internal operation of the system is normal according to the system specifications. Therefore, white box testing is also called structural testing and logic-driven testing. According to the structure of the test program in each road test, when the system is running, it cannot run correctly according to the predetermined requirements. Regardless of its function, such as white box testing, road testing is logical. This kind of test is mainly used for software testing.
正在翻译中..