< Summary

Information
Class: AspNetCoreGeneratedDocument.Views_Shared__Layout
Assembly: ReportingServices.UI
File(s): C:\Users\wathen\source\repos\ReportingServices\ReportingServices.UI\Views\Shared\_Layout.cshtml
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 61
Line coverage: 0%
Branch coverage
0%
Covered branches: 0
Total branches: 16
Branch coverage: 0%
Method coverage

Method coverage is only available for sponsors.

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
<ExecuteAsync()0%60%
<ExecuteAsync()0%100%

File(s)

C:\Users\wathen\source\repos\ReportingServices\ReportingServices.UI\Views\Shared\_Layout.cshtml

#LineLine coverage
 1<!DOCTYPE html>
 2<html lang="en">
 3<head>
 4    <meta charset="utf-8" />
 5    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 06    <title>@ViewData["Title"] - ReportingServices</title>
 7    <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
 08    <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
 09    <link rel="stylesheet" href="~/ReportingServices.styles.css" asp-append-version="true" />
 10    <link href="https://code.jquery.com/ui/1.13.2/themes/ui-lightness/jquery-ui.css"
 11          rel="stylesheet">
 12    <script src="https://code.jquery.com/jquery-3.6.1.js"></script>
 13    <script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script>
 14    <script>
 15        $(function () {
 16            $("#StartDate").datepicker();
 17        })
 18        $(function () {
 19            $("#EndDate").datepicker();
 20        })
 21    </script>
 22</head>
 23<body>
 24    <header>
 25        <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-dark bg-dark border-bottom box-shadow mb-3" styl
 26            <div class="container-fluid">
 27                <a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">Mesa Reporting Services</a>
 28                <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse"
 29                        aria-expanded="false" aria-label="Toggle navigation">
 30                    <span class="navbar-toggler-icon"></span>
 31                </button>
 32                <div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
 33                    <ul class="navbar-nav flex-grow-1">
 34                        <li class="nav-item">
 35                            <a class="nav-link text-light" asp-area="" asp-controller="Home" asp-action="Index">Home</a>
 36                        </li>
 37                    </ul>
 38                    <form class="d-flex" role="search">
 39                        <input class="form-control me-2" type="search" placeholder="Search" aria-label="Search" />
 40                        <button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
 41                    </form>
 42                </div>
 43            </div>
 44        </nav>
 45    </header>
 46    <div class="container">
 47        <main role="main" class="pb-3">
 048            @RenderBody()
 49        </main>
 50    </div>
 51
 52    <footer class="border-top footer text-muted">
 53        <div class="container">
 54            &copy; 2022 - Mesa Reporting Services
 55        </div>
 56    </footer>
 57    <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
 058    <script src="~/js/site.js" asp-append-version="true"></script>
 059    @await RenderSectionAsync("Scripts", required: false)
 60</body>
 61</html>

Methods/Properties

<ExecuteAsync()
<ExecuteAsync()