XSL Code Coverage Tool

Are there any tools that can tell me what percentage of the XSL document actually runs during the tests?

UPDATE

I could not find anything better than the Oxygen XSL debugger and profiler, so I accept Mladen's answer.

+7
xslt code-coverage
source share
3 answers

Not sure about the code coverage itself, but you can find the XML debugger and profiler from Oxygen that can help you.

+2
source share

This was not the case when this question was asked, but now there is ONE option for finding XSLT document code coverage:

http://code.google.com/p/cakupan/

I admit that I have not used it yet, as I am still collecting information right now, but as far as I know, this is IT.

+11
source share

If anyone is still interested, Saxon has a performance analysis that has functionality that gives you a breakdown by each template and the number of times they are used (which is great for optimization).

This is what my conclusion looks like:

enter image description here

+1
source share

All Articles