source: sandbox/2.4-expresso-api/prototype/tests/rest/oauth/code-coverage/api_cache.dashboard.html @ 5888

Revision 5888, 3.8 KB checked in by cristiano, 12 years ago (diff)

Ticket #2598 - implementação base REST + oauth

  • Property svn:executable set to *
Line 
1<!DOCTYPE html>
2<html lang="en">
3  <head>
4    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5    <title>cache</title>
6    <link rel="stylesheet" type="text/css" href="style.css">
7    <script src="jquery.min.js" type="text/javascript"></script>
8    <script src="highcharts.js" type="text/javascript"></script>
9    <script type="text/javascript">
10    $(document).ready(function() {
11          var classCoverageDistribution = new Highcharts.Chart({
12             chart: {
13                renderTo: 'classCoverageDistribution',
14                type: 'column'
15             },
16             title: {text: ''},
17             legend: {enabled: false},
18             credits: {enabled: false},
19             tooltip: {enabled: false},
20             xAxis: {
21                 labels: {style: {fontSize: '8px'}},
22                 categories: [
23                 '0%','0-10%','10-20%','20-30%','30-40%','40-50%','50-60%','60-70%','70-80%','80-90%','90-100%','100%'
24                 ]
25            },
26            yAxis: {
27                title: '',
28                labels: {style: {fontSize: '8px'}},
29            },
30            series: [{
31                data: [0,0,0,0,0,0,1,0,0,0,0,0]
32            }],
33          });
34
35        var classComplexity = new Highcharts.Chart({
36            chart: {
37              renderTo: 'classComplexity',
38              type: 'scatter'
39            },
40            title: {text: ''},
41            legend: {enabled: false},
42            credits: {enabled: false},
43            xAxis: {
44               labels: {enabled: false},
45            },
46            yAxis: {
47              title: '',
48              labels: {enabled: false},
49            },
50            tooltip: {
51                formatter: function() {
52                    return this.point.config[2];
53                }
54            },
55            series: [{
56              data: [[50,5,"<a href=\"api_cache_MemoryCache.php.html#30\">MemoryCache<\/a>"]],
57              marker: {
58                  symbol: 'diamond'
59              }
60            }],
61        });
62    });
63    </script>
64  </head>
65
66  <body>
67    <table width="100%" border="0" cellspacing="0" cellpadding="0">
68      <tr><td class="title">cache</td></tr>
69      <tr><td><div align="center"><p><a href="api_cache.html">Back to Code Coverage report</a></p></div></td></tr>
70      <tr><td class="ruler"><img src="glass.png" width="3" height="3" alt=""></td></tr>
71    </table>
72
73    <br />
74
75    <center>
76      <table width="90%" cellpadding="2" cellspacing="1" border="0">
77        <tr>
78          <td valign="top">
79            <h2>Class Coverage Distribution</h2>
80            <div id="classCoverageDistribution"></div>
81          </td>
82
83          <td valign="top">
84            <h2>Class Complexity</h2>
85            <div id="classComplexity"></div>
86          </td>
87        </tr>
88        <tr>
89          <td valign="top">
90            <h2>Top Project Risks</h2>
91            <ul>
92
93            </ul>
94          </td>
95
96          <td valign="top">
97            <h2>Least Tested Methods</h2>
98            <ul>
99              <li><a href="api_cache_MemoryCache.php.html#105">MemoryCache::clearAll</a> (0%)</li>
100              <li><a href="api_cache_MemoryCache.php.html#97">MemoryCache::clear</a> (0%)</li>
101              <li><a href="api_cache_MemoryCache.php.html#43">MemoryCache::__construct</a> (0%)</li>
102
103            </ul>
104          </td>
105        </tr>
106      </table>
107    </center>
108
109    <br />
110
111    <table width="100%" border="0" cellspacing="0" cellpadding="0">
112      <tr><td class="ruler"><img src="glass.png" width="3" height="3" alt=""></td></tr>
113      <tr><td class="versionInfo">Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.1.2</a> using <a href="http://www.php.net/" target="_top">PHP 5.3.10</a> and PHPUnit 3.6.10 at Thu Mar 29 11:41:57 BRT 2012.</td></tr>
114    </table>
115
116    <br/>
117  </body>
118</html>
Note: See TracBrowser for help on using the repository browser.