Programming Quote by Anonymous
““testing is based on knowledge of the internal logic of an application’s code. Also known as Glass box Testing. Internal software and code working should be known for this type of testing. Tests are based on coverage of code””
About This Quote
Source Technical Manual: Software Testing Fundamentals, 2015
Glass box testing examines internal code structure to ensure each part functions as intended.
In simple terms: Test code by looking inside it.
Apply internal testing for thorough coverage.
Themes
Mood
Type
When to use this quote
- development cycles
- code reviews
- continuous integration
- bug fixing
Key Concepts
Questions to Reflect On
- Do you balance white‑box with black‑box testing?
- How deep should code coverage be?
Requires source code access and may miss user‑level issues.