github
39 of 470 new or added lines in 39 files covered. (8.3%)
36 existing lines in 8 files now uncovered.8941 of 10448 relevant lines covered (85.58%)
17.5 hits per line
1 |
namespace PersistEntities.LearningContent.Question;
|
|
2 |
|
|
3 |
public class ChoicePe |
|
4 |
{ |
|
NEW
|
public ChoicePe(string text) |
× |
NEW
|
{ |
× |
NEW
|
Text = text; |
× |
NEW
|
Id = Guid.NewGuid(); |
× |
NEW
|
} |
× |
10 |
|
|
NEW
|
private ChoicePe()
|
× |
NEW
|
{ |
× |
NEW
|
Text = "";
|
× |
NEW
|
Id = Guid.Empty; |
× |
NEW
|
} |
× |
16 |
|
|
17 |
public string Text { get; set; } |
|
18 |
public Guid Id { get; set; }
|
|
19 |
} |