github
7165 of 9974 branches covered (71.84%)
Branch coverage included in aggregate %.
409 of 472 new or added lines in 13 files covered. (86.65%)
7 existing lines in 4 files now uncovered.27036 of 33852 relevant lines covered (79.87%)
108431.63 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)
|
90,176✔ |
| 22 |
{
|
90,176✔ |
| 23 |
this.EdgeFlags = edgeFlags;
|
90,176✔ |
| 24 |
} |
90,176✔ |
| 25 |
} |
|
| 26 |
} |
|
| 27 |
} |