blib/lib/LINE/Bot/API/Response/GroupMemberProfile.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 12 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 6 | 6 | 100.0 |
pod | 0 | 3 | 0.0 |
total | 18 | 21 | 85.7 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package LINE::Bot::API::Response::GroupMemberProfile; | ||||||
2 | 50 | 50 | 338 | use strict; | |||
50 | 117 | ||||||
50 | 1456 | ||||||
3 | 50 | 50 | 256 | use warnings; | |||
50 | 105 | ||||||
50 | 1213 | ||||||
4 | 50 | 50 | 239 | use parent 'LINE::Bot::API::Response::Common'; | |||
50 | 108 | ||||||
50 | 443 | ||||||
5 | |||||||
6 | 1 | 1 | 0 | 6 | sub display_name { $_[0]->{displayName} } | ||
7 | 1 | 1 | 0 | 7 | sub user_id { $_[0]->{userId} } | ||
8 | 1 | 1 | 0 | 6 | sub picture_url { $_[0]->{pictureUrl} } | ||
9 | |||||||
10 | 1; | ||||||
11 |