< Summary

Information
Class: Syki.Front.Components.Custom.SykiDialogTitle
Assembly: Front
File(s): /home/runner/work/syki/syki/Front/Components/Custom/SykiDialogTitle.razor
Tag: 22_11348620282
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
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/SykiDialogTitle.razor

#LineLine coverage
 1@namespace Syki.Front.Components.Custom
 2
 3<MudText Typo="Typo.h6">
 4    <MudIcon Icon="@Icon" Class="mr-1 mb-n1" />
 5    @Text
 6</MudText>
 7
 8@code
 9{
 10    [Parameter]
 011    public string Icon { get; set; } = Icons.Material.Filled.Add;
 12
 13    [Parameter]
 014    public string Text { get; set; }
 15}

Methods/Properties

get_Icon()
get_Text()