• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

joaoopereira / dotnet-test-rerun / 13084425860

01 Feb 2025 02:51AM UTC coverage: 97.453%. First build
13084425860

Pull #210

github

web-flow
Merge 80e8189b2 into 6d7c0735e
Pull Request #210: chore(deps): bump System.IO.Abstractions from 21.2.1 to 21.3.1

127 of 140 branches covered (90.71%)

Branch coverage included in aggregate %.

600 of 606 relevant lines covered (99.01%)

358.08 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/src/Logging/StatusContext.cs
1
namespace dotnet.test.rerun.Logging;
2

3
/// <summary>
4
/// Wrapper for the SpectreConsole StatusContext object so we do not pollute all classes with Spectre imports
5
/// </summary>
6
public class StatusContext
7
{
8
    private Spectre.Console.StatusContext context;
9

10
    /// <summary>
11
    /// Initializes a new instance of the <see cref="StatusContext"/> class.
12
    /// </summary>
13
    /// <param name="context">The context.</param>
14
    public StatusContext(Spectre.Console.StatusContext context)
2✔
15
    {
16
        this.context = context;
2✔
17
    }
2✔
18

19
    /// <summary>
20
    /// Statuses the specified status.
21
    /// </summary>
22
    /// <param name="status">The status.</param>
23
    /// <returns></returns>
24
    /// <exception cref="System.ArgumentNullException">context</exception>
25
    public StatusContext Status(string status)
26
    {
27
        if (context == null)
1!
28
        {
29
            throw new ArgumentNullException("context");
1✔
30
        }
31

32
        context.Status = status;
×
33
        return this;
×
34
    }
35
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc