Wiki

Changes between Version 2 and Version 3 of DebuggingSansDebugger

Show
Ignore:
Timestamp:
05/04/10 08:25:01 (15 years ago)
Author:
Chuck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DebuggingSansDebugger

    v2 v3  
    33The fundamental requirement is to correct your understanding of how your program is behaving in the context of the inputs and environment in which the bug occurs. Of course, a debugger helps you gain that understanding, but there are also non-debugger-based techniques to do so: 
    44 
     5 * Use `cobra -d` option to get debugging symbols so that uncaught exceptions will include source line numbers for the stack frames. 
    56 * Add more contracts in order to reveal the bug closer to its source. 
    67 * Add more unit tests to isolate and verify various behaviors expected of your methods and classes.