< Summary - Syki

Information
Class: Syki.Front.Components.Custom.SykiTitleText
Assembly: Front
File(s): /home/runner/work/syki/syki/Front/Components/Custom/SykiTitleText.razor
Tag: 4_16869239191
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 15
Line coverage: 0%
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
get_Icon()100%210%
get_Text()100%210%

File(s)

/home/runner/work/syki/syki/Front/Components/Custom/SykiTitleText.razor

#LineLine coverage
 1@namespace Syki.Front.Components.Custom
 2
 3<MudStack Row="true" AlignItems="AlignItems.Center" Justify="Justify.FlexStart" Spacing="1">
 4  <MudIcon Icon="@Icon" Size="Size.Small" />
 05  <MudText><b>@Text</b></MudText>
 6</MudStack>
 7
 8@code
 9{
 10  [Parameter]
 011  public string Icon { get; set; }
 12
 13  [Parameter]
 014  public string Text { get; set; }
 15}

Methods/Properties

get_Icon()
get_Text()