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

DomCR / ACadSharp / 22516092443

28 Feb 2026 07:20AM UTC coverage: 76.4% (-0.9%) from 77.295%
22516092443

push

github

web-flow
Merge pull request #987 from DomCR/issue-973_vertex-layer-update

issue-973 polyline match vertices props

8190 of 11652 branches covered (70.29%)

Branch coverage included in aggregate %.

22 of 22 new or added lines in 2 files covered. (100.0%)

1132 existing lines in 12 files now uncovered.

29627 of 37847 relevant lines covered (78.28%)

149864.28 hits per line

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

53.33
/src/ACadSharp/Objects/FieldList.cs
1
using ACadSharp.Attributes;
2
using System.Collections.Generic;
3

4
namespace ACadSharp.Objects;
5

6
/// <summary>
7
/// Represents a <see cref="FieldList"/> object.
8
/// </summary>
9
/// <remarks>
10
/// Object name <see cref="DxfFileToken.ObjectFieldList"/> <br/>
11
/// Dxf class name <see cref="DxfSubclassMarker.FieldList"/>
12
/// </remarks>
13
[DxfName(DxfFileToken.ObjectFieldList)]
14
[DxfSubClass(DxfSubclassMarker.FieldList)]
15
public class FieldList : NonGraphicalObject
16
{
17
        /// <summary>
18
        /// Gets the collection of fields associated with this instance.
19
        /// </summary>
20
        /// <remarks>The returned collection is read-only from outside the class. To modify the fields, use the provided
21
        /// methods of the containing class, if available.</remarks>
22
        public List<Field> Fields { get; private set; } = new();
3✔
23

24
        /// <inheritdoc/>
UNCOV
25
        public override string ObjectName => DxfFileToken.ObjectFieldList;
×
26

27
        /// <inheritdoc/>
UNCOV
28
        public override ObjectType ObjectType { get { return ObjectType.UNLISTED; } }
×
29

30
        /// <inheritdoc/>
UNCOV
31
        public override string SubclassMarker => DxfSubclassMarker.FieldList;
×
32

33
        /// <inheritdoc/>
34
        public override CadObject Clone()
35
        {
1✔
36
                FieldList clone = base.Clone() as FieldList;
1✔
37

38
                clone.Fields = new List<Field>();
1✔
39
                foreach (Field f in this.Fields)
3!
UNCOV
40
                {
×
UNCOV
41
                        clone.Fields.Add(f);
×
UNCOV
42
                }
×
43

44
                return clone;
1✔
45
        }
1✔
46
}
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