< Summary

Information
Class: MyNet.UI.Loading.Models.IndeterminateBusy
Assembly: MyNet.UI
File(s): https://raw.githubusercontent.com/sandre58/MyNet/85372080fe102cd9ee155ceab49ae000e7f66103/src/MyNet.UI/Loading/Models/IndeterminateBusy.cs
Tag: 323_28699572109
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 19
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
set_Message(...)100%11100%

File(s)

https://raw.githubusercontent.com/sandre58/MyNet/85372080fe102cd9ee155ceab49ae000e7f66103/src/MyNet.UI/Loading/Models/IndeterminateBusy.cs

#LineLine coverage
 1// -----------------------------------------------------------------------
 2// <copyright file="IndeterminateBusy.cs" company="Stéphane ANDRE">
 3// Copyright (c) Stéphane ANDRE. All rights reserved.
 4// </copyright>
 5// -----------------------------------------------------------------------
 6
 7namespace MyNet.UI.Loading.Models;
 8
 9/// <summary>
 10/// Busy state for operations without a known duration (spinner). Optional status message.
 11/// </summary>
 12public class IndeterminateBusy : Busy
 13{
 14    /// <summary>
 15    /// Gets or sets the message displayed during the busy operation.
 16    /// </summary>
 317    public string? Message { get; set => SetProperty(ref field, value); }
 18}
 19

Methods/Properties

set_Message(System.String)