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

DomCR / ACadSharp / 20244298837

15 Dec 2025 07:08PM UTC coverage: 77.69% (-0.2%) from 77.847%
20244298837

push

github

web-flow
Merge pull request #919 from DomCR/image-reactor-fix

Image reactors

7578 of 10571 branches covered (71.69%)

Branch coverage included in aggregate %.

50 of 53 new or added lines in 9 files covered. (94.34%)

131 existing lines in 33 files now uncovered.

28098 of 35350 relevant lines covered (79.49%)

161916.85 hits per line

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

70.59
/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/>
20
                public override string ObjectName => DxfFileToken.EndBlock;
91,239✔
21

22
                /// <inheritdoc/>
23
                public override ObjectType ObjectType => ObjectType.ENDBLK;
1,558✔
24

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

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

33
                /// <inheritdoc/>
34
                public override CadObject Clone()
35
                {
855✔
36
                        BlockEnd clone = (BlockEnd)base.Clone();
855✔
37
                        clone.Owner = new BlockRecord((this.Owner as BlockRecord).Name);
855✔
38
                        return clone;
855✔
39
                }
855✔
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