Next: 4.4 Naming Conventions for
Up: 4 Unit Testing
Previous: 4.2 Black Box Testing
  Contents
4.3 Glass Box Testing
Glass Box testing is designed to maximize coverage of the code. Test
cases for Glass Box testing need to be created to provide path coverage
and branch coverage. Python has a code coverage feature as part of
PyUnit which may prove useful in Glass Box testing. Since Glass Box Testing
involves a lot of time and attention, it will only be used if time permits
and only on the more important logic classes.