Reputation: 737
Does anyone know a tool or method used for measuring TCL code coverage? I have tried google but couldn't find anything useful.
Upvotes: 0
Views: 1076
Reputation: 691
Try nagelfar. It works well for simple code coverage analysis. I had used it a couple of years back. However, it does not provide code coverage for Itcl I think.
(Don't be mislead by the initial description about the syntax checker. It provides code coverage also. ) http://nagelfar.berlios.de/
Upvotes: 2
Reputation: 1551
The Active State Tcl DevKit has a debugger that can measure code coverage. You can look at ActiveState.com for details.
Upvotes: 2