White box testing involves testing internal program structure and code. It includes static testing like code reviews and structural testing like unit testing. Static testing checks code against requirements without executing. Structural testing executes code to test paths and conditions. Code coverage metrics like statement coverage measure what code is executed by tests. Code complexity metrics like cyclomatic complexity quantify complexity to determine necessary test cases. White box testing finds defects from incorrect code but may miss realistic errors and developers can overlook own code issues.