github
39 of 183 new or added lines in 16 files covered. (21.31%)
83 existing lines in 11 files now uncovered.8923 of 10131 relevant lines covered (88.08%)
18.05 hits per line
1 |
namespace BusinessLogic.Entities.LearningContent.AdaptivityContent.Question;
|
|
2 |
|
|
3 |
public class Choice |
|
4 |
{ |
|
NEW
|
public Choice(string text) |
× |
NEW
|
{ |
× |
NEW
|
Text = text; |
× |
NEW
|
Id = Guid.NewGuid(); |
× |
NEW
|
} |
× |
10 |
|
|
NEW
|
private Choice()
|
× |
NEW
|
{ |
× |
NEW
|
Text = "";
|
× |
NEW
|
Id = Guid.Empty; |
× |
NEW
|
} |
× |
16 |
|
|
17 |
public string Text { get; set; } |
|
18 |
public Guid Id { get; set; }
|
|
19 |
} |