C Programming Tutorials - System Testing



Programming in C - System testing

Testing :-

Testing is a process of executing a program with intent of finding an error. Testing is one of the most difficult task in system development which requires creativity, determination and a thourough understanding of the system. 
Testing is primarily of two types:

a.    White box testing :-

It is also known as structural testing or glass box testing that tests internal structures or working of an application, as opposed to its functionality.

https://www.jobsandnewstoday.blogspot.com

b.    Black box testing :-

It is also known as functional testing in which the testing focuses on program’s functionality rather than on it’s internal structure.

https://www.jobsandnewstoday.blogspot.com


Comments