push
github
1 of 2 branches covered (50.0%)
Branch coverage included in aggregate %.
6 of 8 relevant lines covered (75.0%)
0.75 hits per line
1 |
namespace Factory; |
|
2 |
public class Class1 |
|
3 |
{ |
|
4 |
|
|
5 |
public string HelloWorld() |
|
6 |
{ |
1✔ |
7 |
int i = 0; |
1✔ |
8 |
if (i > 0) |
|
9 |
{ |
× |
10 |
return "False"; |
× |
11 |
} |
|
12 |
else
|
|
13 |
{ |
1✔ |
14 |
return "Hello world"; |
1✔ |
15 |
} |
|
16 |
} |
1✔ |
17 |
} |