slothg / flexcover

Automatically exported from code.google.com/p/flexcover
0 stars 0 forks source link

catch statements are never covered. #24

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago

Thank you for such a excellent tool. I've just started using flexcover. It 
works very well. 
However, catch statements are always uncovered in "Lines" tab. I would like 
them to be tested status but I can't. Does anyone know how to do it? 
Example:
try { 
   doSomething(); 
} catch (e:Error) {  // this line is never marked as tested
   trace(e); 
} 

Thank you for your help. 
Mitsuru

Original issue reported on code.google.com by mitsuru....@gmail.com on 29 Nov 2008 at 5:32