Posts Tagged: "black box"

Black Box or Functional Testing

Black Box Testing is testing without knowledge of the internal workings of the item being tested. The Outside world comes into contact with the test items, only through the application interface, an internal module interface, or the INPUT/OUTPUT description of a batch process. They check whether interface definitions are adhered to in all situations and […]

Testing Methods

1.White Box White box testing is also called ‘Structural Testing / Glass Box Testing’ is used for testing the code keeping the system specs in mind. Inner working is considered and thus Developers Test. Mutation Testing-Number of mutants of the same program created with minor changes and none of their result should coincide with that […]

Testing Techniques

White Box Testing Aims to establish that the code works as designed Examines the internal structure and implementation of the program Target specific paths through the program Needs accurate knowledge of the design, implementation and code Black box testing Aims to establish that the code meets the requirements Tends to be applied later in the […]