Advantages and Disadvantages of White Box Testing
Filed Under Development, Issues, Process, Software, Terms, Testing | Posted on August 22, 2007
Advantages of White box testing are: i) As the knowledge of internal coding structure is prerequisite, it becomes very easy to find out which type of input/data can help in testing the application effectively. ii) The other advantage of white box testing is that it helps in optimizing the code iii) It helps in removing [...]
What is White Box Testing ?
Filed Under Development, Process, Software, Terms, Testing | Posted on August 21, 2007
White box testing strategy deals with the internal logic and structure of the code. White box testing is also called as glass, structural, open box or clear box testing. The tests written based on the white box testing strategy incorporate coverage of the code written, branches, paths, statements and internal logic of the code etc. [...]
Orthogonal Array Testing Strategy (OATS)
Filed Under Development, Process, Software, Terms, Testing | Posted on August 21, 2007
The Orthogonal Array Testing Strategy (OATS) is a systematic, statistical way of testing pair-wise interactions. It provides representative (uniformly distributed) coverage of of all variable pair combinations. This makes the technique particularly useful for integration testing of software components (especially in OO systems where multiple subclasses can be substituted as the server for a client). [...]
Black Box testing techniques
Filed Under Development, Process, Software, Terms, Testing | Posted on August 19, 2007
Black Box Testing is testing technique having no knowledge of the internal functionality/structure of the system. This testing technique treats the system as black box or closed box. Tester will only know the formal inputs and projected results. Tester does not know how the program actually arrives at those results. Hence tester tests the system [...]