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

djsuperchief / Kyameru / 15155278996

21 May 2025 06:38AM UTC coverage: 87.848% (-3.2%) from 91.081%
15155278996

push

github

web-flow
Merge pull request #195 from djsuperchief/189-atomic-remove

189 Go Live

501 of 630 branches covered (79.52%)

Branch coverage included in aggregate %.

175 of 203 new or added lines in 21 files covered. (86.21%)

93 existing lines in 13 files now uncovered.

2875 of 3213 relevant lines covered (89.48%)

22.06 hits per line

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

0.0
/tests/UnitTests/Kyameru.Component.Error/BaseError.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4

5
namespace Kyameru.Component.Error
6
{
7
    public abstract class BaseError
8
    {
9
        protected readonly Dictionary<string, string> headers;
10

UNCOV
11
        public BaseError(Dictionary<string, string> headers)
×
UNCOV
12
        {
×
UNCOV
13
            this.headers = headers;
×
UNCOV
14
        }
×
15

16
        protected bool WillError()
UNCOV
17
        {
×
UNCOV
18
            bool error = false;
×
UNCOV
19
            if (bool.TryParse(this.headers["Error"], out error))
×
UNCOV
20
            {
×
21
                // do nothing
UNCOV
22
            }
×
23

UNCOV
24
            return error;
×
UNCOV
25
        }
×
26
    }
27
}
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