mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
Travis pushed coverage of ec8a8393ee3136cc186b4bf94f0cd419bbf7e59d@master to gh-pages
This commit is contained in:
@ -60,7 +60,6 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td><a href="DefaultAlgorithm.php.html#14">DefaultAlgorithm</a></td><td class="text-right">33%</td></tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
@ -77,7 +76,6 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td><a href="DefaultAlgorithm.php.html#14">DefaultAlgorithm</a></td><td class="text-right">8</td></tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
@ -115,7 +113,6 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td><a href="DefaultAlgorithm.php.html#19"><abbr title="DefaultAlgorithm::generate">generate</a></a></td><td class="text-right">33%</td></tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
@ -132,7 +129,6 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td><a href="DefaultAlgorithm.php.html#19"><abbr title="DefaultAlgorithm::generate">generate</abbr></a></td><td class="text-right">8</td></tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
@ -142,7 +138,7 @@
|
||||
<footer>
|
||||
<hr/>
|
||||
<p>
|
||||
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.0.15</a> using <a href="http://hhvm.com/" target="_top">HHVM 3.5.0</a> and <a href="http://phpunit.de/">PHPUnit 4.3.5</a> at Thu Feb 5 16:29:32 UTC 2015.</small>
|
||||
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.0.15</a> using <a href="http://php.net/" target="_top">PHP 5.4.37</a> and <a href="http://phpunit.de/">PHPUnit 4.3.5</a> at Tue Feb 10 10:05:22 UTC 2015.</small>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
@ -163,7 +159,7 @@ $(document).ready(function() {
|
||||
.yAxis.tickFormat(d3.format('d'));
|
||||
|
||||
d3.select('#classCoverageDistribution svg')
|
||||
.datum(getCoverageDistributionData([0,0,0,0,1,0,0,0,0,0,0,0], "Class Coverage"))
|
||||
.datum(getCoverageDistributionData([0,0,0,0,0,0,0,0,0,0,0,1], "Class Coverage"))
|
||||
.transition().duration(500).call(chart);
|
||||
|
||||
nv.utils.windowResize(chart.update);
|
||||
@ -181,7 +177,7 @@ $(document).ready(function() {
|
||||
.yAxis.tickFormat(d3.format('d'));
|
||||
|
||||
d3.select('#methodCoverageDistribution svg')
|
||||
.datum(getCoverageDistributionData([0,0,0,0,1,0,0,0,0,0,0,0], "Method Coverage"))
|
||||
.datum(getCoverageDistributionData([0,0,0,0,0,0,0,0,0,0,0,1], "Method Coverage"))
|
||||
.transition().duration(500).call(chart);
|
||||
|
||||
nv.utils.windowResize(chart.update);
|
||||
@ -232,7 +228,7 @@ $(document).ready(function() {
|
||||
chart.yAxis.axisLabel('Cyclomatic Complexity');
|
||||
|
||||
d3.select('#classComplexity svg')
|
||||
.datum(getComplexityData([[33.333333333333,4,"<a href=\"DefaultAlgorithm.php.html#14\">DefaultAlgorithm<\/a>"]], 'Class Complexity'))
|
||||
.datum(getComplexityData([[100,4,"<a href=\"DefaultAlgorithm.php.html#14\">DefaultAlgorithm<\/a>"]], 'Class Complexity'))
|
||||
.transition()
|
||||
.duration(500)
|
||||
.call(chart);
|
||||
@ -257,7 +253,7 @@ $(document).ready(function() {
|
||||
chart.yAxis.axisLabel('Method Complexity');
|
||||
|
||||
d3.select('#methodComplexity svg')
|
||||
.datum(getComplexityData([[33.333333333333,4,"<a href=\"DefaultAlgorithm.php.html#19\">DefaultAlgorithm::generate<\/a>"]], 'Method Complexity'))
|
||||
.datum(getComplexityData([[100,4,"<a href=\"DefaultAlgorithm.php.html#19\">DefaultAlgorithm::generate<\/a>"]], 'Method Complexity'))
|
||||
.transition()
|
||||
.duration(500)
|
||||
.call(chart);
|
||||
|
Reference in New Issue
Block a user