|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <title>Code Coverage for {{full_path}}</title> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <link href="{{path_to_root}}_css/bootstrap.min.css" rel="stylesheet" type="text/css"> |
| 8 | + <link href="{{path_to_root}}_css/octicons.css" rel="stylesheet" type="text/css"> |
| 9 | + <link href="{{path_to_root}}_css/style.css" rel="stylesheet" type="text/css"> |
| 10 | + <link href="{{path_to_root}}_css/custom.css" rel="stylesheet" type="text/css"> |
| 11 | + </head> |
| 12 | + <body> |
| 13 | + <header> |
| 14 | + <div class="container-fluid"> |
| 15 | + <div class="row"> |
| 16 | + <div class="col-md-12"> |
| 17 | + <nav aria-label="breadcrumb"> |
| 18 | + <ol class="breadcrumb"> |
| 19 | +{{breadcrumbs}} |
| 20 | + </ol> |
| 21 | + </nav> |
| 22 | + </div> |
| 23 | + </div> |
| 24 | + </div> |
| 25 | + </header> |
| 26 | + <div class="container-fluid"> |
| 27 | + <div class="table-responsive"> |
| 28 | + <table class="table table-bordered"> |
| 29 | + <thead> |
| 30 | + <tr> |
| 31 | + <td> </td> |
| 32 | + <td colspan="13"><div align="center"><strong>Code Coverage</strong></div></td> |
| 33 | + </tr> |
| 34 | + <tr> |
| 35 | + <td> </td> |
| 36 | + <td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td> |
| 37 | + <td colspan="4"><div align="center"><strong>Functions and Methods</strong></div></td> |
| 38 | + <td colspan="3"><div align="center"><strong>Branches</strong></div></td> |
| 39 | + <td colspan="3"><div align="center"><strong>Lines</strong></div></td> |
| 40 | + </tr> |
| 41 | + </thead> |
| 42 | + <tbody> |
| 43 | +{{items}} |
| 44 | + </tbody> |
| 45 | + </table> |
| 46 | + </div> |
| 47 | + <table id="code" class="table table-borderless table-condensed"> |
| 48 | + <tbody> |
| 49 | +{{lines}} |
| 50 | + </tbody> |
| 51 | + </table> |
| 52 | + <footer> |
| 53 | + <hr/> |
| 54 | + <h4>Legend</h4> |
| 55 | + <p> |
| 56 | + <span class="success"><strong>Executed</strong></span> |
| 57 | + <span class="danger"><strong>Not Executed</strong></span> |
| 58 | + <span class="warning"><strong>Dead Code</strong></span> |
| 59 | + </p> |
| 60 | + <p> |
| 61 | + <small>Generated by <a href="https://github.com/sebastianbergmann/php-code-coverage" target="_top">php-code-coverage {{version}}</a> using {{runtime}}{{generator}} at {{date}}.</small> |
| 62 | + </p> |
| 63 | + <a title="Back to the top" id="toplink" href="#"> |
| 64 | + <svg xmlns="http://www.w3.org/2000/svg" width="12" height="16" viewBox="0 0 12 16"><path fill-rule="evenodd" d="M12 11L6 5l-6 6h12z"/></svg> |
| 65 | + </a> |
| 66 | + </footer> |
| 67 | + </div> |
| 68 | + <script src="{{path_to_root}}_js/jquery.min.js" type="text/javascript"></script> |
| 69 | + <script src="{{path_to_root}}_js/popper.min.js" type="text/javascript"></script> |
| 70 | + <script src="{{path_to_root}}_js/bootstrap.min.js" type="text/javascript"></script> |
| 71 | + <script src="{{path_to_root}}_js/file.js" type="text/javascript"></script> |
| 72 | + </body> |
| 73 | +</html> |
0 commit comments