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

DomCR / ACadSharp / 24774095399

22 Apr 2026 10:45AM UTC coverage: 77.102% (+0.03%) from 77.076%
24774095399

Pull #1041

github

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

8456 of 11919 branches covered (70.95%)

Branch coverage included in aggregate %.

326 of 382 new or added lines in 12 files covered. (85.34%)

14 existing lines in 4 files now uncovered.

30448 of 38539 relevant lines covered (79.01%)

153339.2 hits per line

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

71.43
/src/ACadSharp/IO/ReferenceData.cs
1
namespace ACadSharp.IO;
2

3
/// <summary>
4
/// Represents a reference to a CAD object identified by a name and/or handle.
5
/// </summary>
6
public readonly struct ReferenceData
7
{
8
        /// <summary>
9
        /// Gets the handle of the referenced object.
10
        /// </summary>
NEW
11
        public ulong? Handle { get; }
×
12

13
        /// <summary>
14
        /// Gets the name of the referenced object.
15
        /// </summary>
NEW
16
        public string Name { get; }
×
17

18
        /// <summary>
19
        /// Initializes a new instance of the <see cref="ReferenceData"/> struct.
20
        /// </summary>
21
        /// <param name="name">The name of the referenced object.</param>
22
        /// <param name="handle">The handle of the referenced object.</param>
23
        public ReferenceData(string name, ulong? handle) : this()
17,436✔
24
        {
17,436✔
25
                this.Name = name;
17,436✔
26
                this.Handle = handle;
17,436✔
27
        }
17,436✔
28
}
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