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

DomCR / ACadSharp / 17737836230

15 Sep 2025 03:12PM UTC coverage: 2.092% (-76.2%) from 78.245%
17737836230

push

github

web-flow
Merge pull request #790 from DomCR/addflag-refactor

addflag refactor

141 of 9225 branches covered (1.53%)

Branch coverage included in aggregate %.

0 of 93 new or added lines in 10 files covered. (0.0%)

24910 existing lines in 372 files now uncovered.

724 of 32119 relevant lines covered (2.25%)

5.76 hits per line

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

0.0
/src/ACadSharp/Blocks/BlockEnd.cs
1
using ACadSharp.Attributes;
2
using ACadSharp.Entities;
3
using ACadSharp.Tables;
4
using CSMath;
5

6
namespace ACadSharp.Blocks
7
{
8
        /// <summary>
9
        /// Represents a <see cref="BlockEnd"/> entity
10
        /// </summary>
11
        /// <remarks>
12
        /// Object name <see cref="DxfFileToken.EndBlock"/> <br/>
13
        /// Dxf class name <see cref="DxfSubclassMarker.BlockEnd"/>
14
        /// </remarks>
15
        [DxfName(DxfFileToken.EndBlock)]
16
        [DxfSubClass(DxfSubclassMarker.BlockEnd)]
17
        public class BlockEnd : Entity
18
        {
19
                /// <inheritdoc/>
UNCOV
20
                public override string ObjectName => DxfFileToken.EndBlock;
×
21

22
                /// <inheritdoc/>
UNCOV
23
                public override ObjectType ObjectType => ObjectType.ENDBLK;
×
24

25
                /// <inheritdoc/>
UNCOV
26
                public override string SubclassMarker => DxfSubclassMarker.BlockEnd;
×
27

UNCOV
28
                public BlockEnd(BlockRecord record) : base()
×
UNCOV
29
                {
×
UNCOV
30
                        this.Owner = record;
×
UNCOV
31
                }
×
32

33
                /// <inheritdoc/>
34
                public override CadObject Clone()
UNCOV
35
                {
×
UNCOV
36
                        BlockEnd clone = (BlockEnd)base.Clone();
×
UNCOV
37
                        clone.Owner = new BlockRecord((this.Owner as BlockRecord).Name);
×
UNCOV
38
                        return clone;
×
UNCOV
39
                }
×
40

41
                /// <inheritdoc/>
42
                public override BoundingBox GetBoundingBox()
UNCOV
43
                {
×
UNCOV
44
                        return BoundingBox.Null;
×
UNCOV
45
                }
×
46

47
                /// <inheritdoc/>
48
                public override void ApplyTransform(Transform transform)
49
                {
×
50
                }
×
51
        }
52
}
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