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