WHAT ARE THE DIFFERENT TYPES OF SOFTWARE TESTING
Black Box Testing Black Box Testing specifically tests the functionality of the software and does not pay heed to internal design. Black Box Testing, also known as Behavioral Testing, is a Software Testing method in which the internal structure/ design/ implementation of the item being tested is not known to the tester. White Box Testing White Box Testing checks the various internal software and coding that the software is built on. White Box Testing is a method of Software Testing that tests internal structures or workings of an application, as opposed to its functionality. White Box Testing can be applied at the unit, integration and system levels of the software testing process. Unit Testing Unit Testing deals with the checking of the modules that the software is broken into and requires detailed knowledge of coding, hence usually done by the programmers. Unit Testing is a level of Software Testing where individual units/ components of a software are tested. The p...