view templates/class_template.html @ 6:5849d5bfbee0

2012-01-18 Pavel Tisnovsky <ptisnovs@redhat.com> * templates/class_template.html: * templates/summary.html: New templates used for a summary and a report generated for each tested class. * src/ReportGenerator.java: Support for templates updated, added the functionality to generate summary.
author Pavel Tisnovsky <ptisnovs@redhat.com>
date Wed, 18 Jan 2012 16:52:43 +0100
parents
children 342d366654ce
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" />
    </head>
    <body>
        <h1>Report for class: ${CLASS_NAME}&nbsp;&nbsp;&nbsp;<a href='all_results.html'>summary</a></h1>

        <table>
            <tr>
                <th>Method</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>