push
github
5275 of 7666 branches covered (68.81%)
Branch coverage included in aggregate %.
53 of 57 new or added lines in 5 files covered. (92.98%)
21065 of 26999 relevant lines covered (78.02%)
39171.97 hits per line
| 1 |
using ACadSharp.Tables; |
|
| 2 |
using System;
|
|
| 3 |
using System.Collections.Generic;
|
|
| 4 |
|
|
| 5 |
namespace ACadSharp.XData
|
|
| 6 |
{
|
|
| 7 |
public class ExtendedData |
|
| 8 |
{
|
|
|
|
public List<ExtendedDataRecord> Records { get; } = new(); |
47,197✔ |
| 10 |
|
|
|
|
public ExtendedData()
|
22,714✔ |
| 12 |
{
|
22,714✔ |
| 13 |
} |
22,714✔ |
| 14 |
|
|
|
|
public ExtendedData(IEnumerable<ExtendedDataRecord> records) : this() |
22,713✔ |
| 16 |
{
|
22,713✔ |
| 17 |
this.Records.AddRange(records);
|
22,713✔ |
| 18 |
} |
22,713✔ |
| 19 |
|
|
| 20 |
public void AddControlStrings() |
|
|
NEW
|
{
|
× |
|
NEW
|
throw new NotImplementedException(); |
× |
| 23 |
} |
|
| 24 |
} |
|
| 25 |
} |