github
7226 of 10046 branches covered (71.93%)
Branch coverage included in aggregate %.
547 of 637 new or added lines in 13 files covered. (85.87%)
10 existing lines in 4 files now uncovered.27143 of 33990 relevant lines covered (79.86%)
107697.1 hits per line
| 1 |
namespace ACadSharp.Entities |
|
| 2 |
{
|
|
| 3 |
public partial class TableEntity |
|
| 4 |
{
|
|
| 5 |
public class CellBorder |
|
| 6 |
{
|
|
|
|
public Color Color { get; set; }
|
8,844✔ |
| 8 |
|
|
|
|
public double DoubleLineSpacing { get; set; } |
5,244✔ |
| 10 |
|
|
|
UNCOV
11
|
public CellEdgeFlags EdgeFlags { get; }
|
× |
| 12 |
|
|
|
|
public bool IsInvisible { get; set; } |
5,244✔ |
| 14 |
|
|
|
|
public LineWeightType LineWeight { get; set; }
|
8,844✔ |
| 16 |
|
|
| 17 |
public TableBorderPropertyFlags PropertyOverrideFlags { get; set; }
|
5,244✔ |
| 18 |
|
|
| 19 |
public BorderType Type { get; set; }
|
5,244✔ |
| 20 |
|
|
| 21 |
public CellBorder(CellEdgeFlags edgeFlags)
|
113,888✔ |
| 22 |
{
|
113,888✔ |
| 23 |
this.EdgeFlags = edgeFlags;
|
113,888✔ |
| 24 |
} |
113,888✔ |
| 25 |
} |
|
| 26 |
} |
|
| 27 |
} |