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

DomCR / ACadSharp / 29143042407

11 Jul 2026 06:34AM UTC coverage: 2.912% (-73.0%) from 75.918%
29143042407

push

github

web-flow
Merge pull request #1146 from ilCosmico/acds-read-payload-anchor

Read the AcDs payload area offset from the data segment header

264 of 12999 branches covered (2.03%)

Branch coverage included in aggregate %.

0 of 30 new or added lines in 1 file covered. (0.0%)

31243 existing lines in 465 files now uncovered.

1337 of 41984 relevant lines covered (3.18%)

5.38 hits per line

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

0.0
/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>
UNCOV
11
        public ulong? Handle { get; }
×
12

13
        /// <summary>
14
        /// Gets the name of the referenced object.
15
        /// </summary>
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>
UNCOV
23
        public ReferenceData(string name, ulong? handle) : this()
×
UNCOV
24
        {
×
UNCOV
25
                this.Name = name;
×
UNCOV
26
                this.Handle = handle;
×
UNCOV
27
        }
×
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