github
5140 of 7542 branches covered (68.15%)
Branch coverage included in aggregate %.
114 of 227 new or added lines in 25 files covered. (50.22%)
11 existing lines in 3 files now uncovered.20500 of 26582 relevant lines covered (77.12%)
36426.0 hits per line
| 1 |
using ACadSharp.Tables; |
|
| 2 |
using System.Collections.Generic;
|
|
| 3 |
|
|
| 4 |
namespace ACadSharp.XData
|
|
| 5 |
{
|
|
| 6 |
public class ExtendedData |
|
| 7 |
{
|
|
|
NEW
|
public AppId AppId { get; }
|
× |
| 9 |
|
|
|
|
public List<ExtendedDataRecord> Records { get; } = new List<ExtendedDataRecord>(); |
41,146✔ |
| 11 |
|
|
|
|
public ExtendedData(AppId app)
|
20,573✔ |
|
|
{
|
20,573✔ |
|
|
this.AppId = app;
|
20,573✔ |
|
|
} |
20,573✔ |
| 16 |
|
|
|
|
public ExtendedData(AppId app, IEnumerable<ExtendedDataRecord> records) : this(app) |
20,573✔ |
|
|
{
|
20,573✔ |
|
|
this.Records.AddRange(records);
|
20,573✔ |
|
|
} |
20,573✔ |
| 21 |
} |
|
| 22 |
} |