| 
 
      I found it most convenient to put test program execution as a post-build step in compilation. To do so use 
      project property page:
      
      Full command you need in "Command Line" field is:
      
"$(TargetDir)\$(TargetName).exe"   --result_code=no   --report_level=no 
  
      Note that both report level and result code are suppressed. This way the only output you may see from this 
      command are possible runtime errors. But the best part is that you could jump through these errors using usual 
      keyboard shortcuts/mouse clicks you use for compilation error analysis:
      
 |