
- Software Testing Dictionary
- Home
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Loop Testing
What is Loop Testing ?
Loop testing a white box testing technique performed to validate the loops. There are four kinds of loops as mentioned below:
Simple Loops
Nested Loops
Concatenated Loops
Unstructured Loops
What is tested in Loop Testing?
Loops Testing reveals loops initialization problems.
By going through the loop once, the uninitialized variables in the loop can be determined.
Testing can also fix loop repetition issues.
Loops can also reveal capacity/performance bottlenecks.
Advertisements