github
2058 of 3728 branches covered (55.2%)
Branch coverage included in aggregate %.
5 of 33 new or added lines in 2 files covered. (15.15%)
1925 existing lines in 247 files now uncovered.8568 of 12829 relevant lines covered (66.79%)
126110.59 hits per line
1 |
namespace Zilon.Core |
|
2 |
{ |
|
3 |
public sealed class Size |
|
4 |
{ |
|
5 |
public Size(int width, int height) |
21✔ |
6 |
{ |
21✔ |
7 |
Width = width; |
21✔ |
8 |
Height = height; |
21✔ |
9 |
} |
21✔ |
10 |
|
|
11 |
public int Height { get; } |
1,103✔ |
12 |
public int Width { get; } |
1,103✔ |
13 |
|
|
14 |
public override string ToString() |
|
UNCOV
15
|
{ |
× |
16 |
return $"({Width}, {Height})"; |
× |
UNCOV
17
|
} |
× |
18 |
} |
|
19 |
} |