github
267 of 2044 branches covered (13.06%)
Branch coverage included in aggregate %.
4 of 16 new or added lines in 2 files covered. (25.0%)
2312 existing lines in 239 files now uncovered.3459 of 5972 relevant lines covered (57.92%)
8.76 hits per line
1 |
import { ApiProperty } from '@nestjs/swagger'; |
14✔ |
2 |
|
|
3 |
export class SafeAppInfo { |
14✔ |
4 |
@ApiProperty()
|
|
5 |
name: string;
|
14✔ |
6 |
@ApiProperty()
|
|
7 |
url: string;
|
14✔ |
8 |
@ApiProperty()
|
|
9 |
logoUri: string;
|
14✔ |
10 |
|
|
11 |
constructor(name: string, url: string, logoUri: string) { |
|
UNCOV
12
|
this.name = name;
|
× |
UNCOV
13
|
this.url = url;
|
× |
UNCOV
14
|
this.logoUri = logoUri;
|
× |
15 |
} |
|
16 |
} |