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

DomCR / ACadSharp / 24669708962

20 Apr 2026 01:38PM UTC coverage: 77.118% (+0.04%) from 77.076%
24669708962

Pull #1041

github

web-flow
Merge 6a14a7067 into 98bd2e4f4
Pull Request #1041: issue-1035 Add progress reporting to CAD file reading process

8455 of 11917 branches covered (70.95%)

Branch coverage included in aggregate %.

74 of 84 new or added lines in 8 files covered. (88.1%)

2 existing lines in 1 file now uncovered.

30421 of 38494 relevant lines covered (79.03%)

153505.78 hits per line

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

71.43
/src/ACadSharp/IO/ProgressEventArgs.cs
1
using System;
2

3
namespace ACadSharp.IO;
4

5
public delegate void ProgressEventHandler(object sender, ProgressEventArgs e);
6

7
public class ProgressEventArgs : EventArgs
8
{
NEW
9
        public ReadStage Stage { get; }
×
10

NEW
11
        public CadObjectData Current { get; }
×
12

13
        public ProgressEventArgs(ReadStage stage, CadObjectData current)
13,425✔
14
        {
13,425✔
15
                this.Stage = stage;
13,425✔
16
                this.Current = current;
13,425✔
17
        }
13,425✔
18
}
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