Skip to content

Commit

Permalink
🤖 Save code coverage report to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE authored and github-actions[bot] committed Jul 25, 2024
1 parent afc30c3 commit e845b73
Show file tree
Hide file tree
Showing 78 changed files with 20,431 additions and 0 deletions.
Empty file added phpunit/.nojekyll
Empty file.
21 changes: 21 additions & 0 deletions phpunit/coverage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions phpunit/html/.css/bootstrap.min.css

Large diffs are not rendered by default.

Empty file added phpunit/html/.css/custom.css
Empty file.
1 change: 1 addition & 0 deletions phpunit/html/.css/nv.d3.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions phpunit/html/.css/octicons.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.octicon {
display: inline-block;
vertical-align: text-top;
fill: currentColor;
}
122 changes: 122 additions & 0 deletions phpunit/html/.css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
body {
padding-top: 10px;
}

.popover {
max-width: none;
}

.octicon {
margin-right:.25em;
}

.table-bordered>thead>tr>td {
border-bottom-width: 1px;
}

.table tbody>tr>td, .table thead>tr>td {
padding-top: 3px;
padding-bottom: 3px;
}

.table-condensed tbody>tr>td {
padding-top: 0;
padding-bottom: 0;
}

.table .progress {
margin-bottom: inherit;
}

.table-borderless th, .table-borderless td {
border: 0 !important;
}

.table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.success, span.success {
background-color: #dff0d8;
}

.table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
background-color: #c3e3b5;
}

.table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
background-color: #99cb84;
}

.table tbody tr.danger, .table tbody td.danger, li.danger, span.danger {
background-color: #f2dede;
}

.table tbody td.warning, li.warning, span.warning {
background-color: #fcf8e3;
}

.table tbody td.info {
background-color: #d9edf7;
}

td.big {
width: 117px;
}

td.small {
}

td.codeLine {
font-family: "Source Code Pro", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
white-space: pre;
}

td span.comment {
color: #888a85;
}

td span.default {
color: #2e3436;
}

td span.html {
color: #888a85;
}

td span.keyword {
color: #2e3436;
font-weight: bold;
}

pre span.string {
color: #2e3436;
}

span.success, span.warning, span.danger {
margin-right: 2px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
}

#classCoverageDistribution, #classComplexity {
height: 200px;
width: 475px;
}

#toplink {
position: fixed;
left: 5px;
bottom: 5px;
outline: 0;
}

svg text {
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #666;
fill: #666;
}

.scrollbox {
height:245px;
overflow-x:hidden;
overflow-y:scroll;
}
1 change: 1 addition & 0 deletions phpunit/html/.icons/file-code.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions phpunit/html/.icons/file-directory.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions phpunit/html/.js/bootstrap.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions phpunit/html/.js/d3.min.js

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions phpunit/html/.js/file.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
$(function() {
var $window = $(window)
, $top_link = $('#toplink')
, $body = $('body, html')
, offset = $('#code').offset().top
, hidePopover = function ($target) {
$target.data('popover-hover', false);

setTimeout(function () {
if (!$target.data('popover-hover')) {
$target.popover('hide');
}
}, 300);
};

$top_link.hide().click(function(event) {
event.preventDefault();
$body.animate({scrollTop:0}, 800);
});

$window.scroll(function() {
if($window.scrollTop() > offset) {
$top_link.fadeIn();
} else {
$top_link.fadeOut();
}
}).scroll();

$('.popin')
.popover({trigger: 'manual'})
.on({
'mouseenter.popover': function () {
var $target = $(this);

$target.data('popover-hover', true);

// popover already displayed
if ($target.next('.popover').length) {
return;
}

// show the popover
$target.popover('show');

// register mouse events on the popover
$target.next('.popover:not(.popover-initialized)')
.on({
'mouseenter': function () {
$target.data('popover-hover', true);
},
'mouseleave': function () {
hidePopover($target);
}
})
.addClass('popover-initialized');
},
'mouseleave.popover': function () {
hidePopover($(this));
}
});
});
2 changes: 2 additions & 0 deletions phpunit/html/.js/jquery.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions phpunit/html/.js/nv.d3.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions phpunit/html/.js/popper.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit e845b73

Please sign in to comment.