github
2073 of 3728 branches covered (55.61%)
Branch coverage included in aggregate %.
5 of 33 new or added lines in 2 files covered. (15.15%)
1893 existing lines in 244 files now uncovered.8612 of 12814 relevant lines covered (67.21%)
294447.88 hits per line
1 |
namespace Zilon.Core |
|
2 |
{ |
|
3 |
public sealed class Size |
|
4 |
{ |
|
5 |
public Size(int width, int height) |
52✔ |
6 |
{ |
52✔ |
7 |
Width = width; |
52✔ |
8 |
Height = height; |
52✔ |
9 |
} |
52✔ |
10 |
|
|
11 |
public int Height { get; } |
1,153✔ |
12 |
public int Width { get; } |
1,153✔ |
13 |
|
|
14 |
public override string ToString() |
|
UNCOV
15
|
{ |
× |
16 |
return $"({Width}, {Height})"; |
× |
UNCOV
17
|
} |
× |
18 |
} |
|
19 |
} |