view templates/class_template.html @ 9:5bc6733b29bd

2012-02-01 Pavel Tisnovsky <ptisnovs@redhat.com> * src/ReportGenerator.java: * templates/class_report.js: * templates/class_template.html: * templates/style.css: Added new functionality - methods coveraged by tests could be filtered in a generated class list (HTML page + JavaScript). * path_to_rt_jar.txt: Updated path * test_directory.txt: Updated path * Makefile: Updated according to previous changes.
author ptisnovs
date Wed, 01 Feb 2012 10:24:45 +0100
parents 342d366654ce
children
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <title>Report for class: ${CLASS_NAME}</title>
        <meta name="Generator" content="MauveTestCoverage" />
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <link type="text/css" rel="StyleSheet" href="style.css" />
        <style type="text/css">
        .ok {}
        </style>
        <script language="JavaScript" type="text/javascript" src="class_report.js">
        </script>
    </head>
    <body>
        <h1>Report for class: ${CLASS_NAME}&nbsp;&nbsp;&nbsp;<a href='all_results.html'>summary</a></h1>

        <table>
            <tr>
                <th>Method
                    &nbsp;[<a href="javascript:showAll();">all</a>]
                    &nbsp;[<a href="javascript:showDiff();">diff only</a>]
                </th>
                <th><a href="${CLASS_NAME}_api.txt">API</a></th>
                <th><a href="${CLASS_NAME}_test.txt">Tested</a></th>
            </tr>
${METHOD_LIST}
        </table>

    </body>
</html>