/testability-explorer/src/main/resources/com/google/test/metric/report/source/Project.html

http://testability-explorer.googlecode.com/ · HTML · 26 lines · 26 code · 0 blank · 0 comment · 0 complexity · b29293503145b7c9e51fe474a82ad7af MD5 · raw file

  1. <#import "Macro.ftl" as util>
  2. <html>
  3. <head>
  4. <link href="te.css" rel="stylesheet" type="text/css">
  5. <title>Testability Explorer Report</title>
  6. </head>
  7. <body>
  8. <#include "Header.html">
  9. <h3>Summary by Class</h3>
  10. <@util.overview report=classReport name="Project by Class" listName="Class"/>
  11. <br>
  12. <h3>Summary by Package</h3>
  13. <@util.overview report=packageReport name="Project by Package" listName="Package"/>
  14. <br>
  15. <h3>Packages</h3>
  16. <@util.unitList list=packageReport.unitCosts name="Package"; package>
  17. package_${package.name}.html
  18. </@util.unitList>
  19. <br>
  20. <h3>Worst Classes</h3>
  21. <@util.unitList list=classReport.unitCosts name="Class"; class>
  22. class_${class.name}.html
  23. </@util.unitList>
  24. <#include "Footer.html">
  25. </body>
  26. </html>