< Summary

Information
Class: Pomodoro.Web.Components.History.DateNavigator
Assembly: Pomodoro.Web
File(s): /home/runner/work/Pomodoro/Pomodoro/src/Pomodoro.Web/Components/History/DateNavigator.razor
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 10
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
BuildRenderTree(...)100%11100%

File(s)

/home/runner/work/Pomodoro/Pomodoro/src/Pomodoro.Web/Components/History/DateNavigator.razor

#LineLine coverage
 1@inherits DateNavigatorBase
 2
 3<div class="date-navigator">
 1204    <span class="current-date">@FormattedDate</span>
 5    <div class="nav-buttons">
 6        <button class="nav-btn" @onclick="GoToPrevious" title="Previous day">◀</button>
 7        <button class="nav-btn today-btn" @onclick="GoToToday" disabled="@IsTodayAsyncValue">Today</button>
 8        <button class="nav-btn" @onclick="GoToNext" title="Next day" disabled="@IsTodayAsyncValue">▶</button>
 9    </div>
 10</div>