blib/lib/LINE/Bot/API/Response/WebhookTest.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 14 | 14 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 8 | 8 | 100.0 |
pod | 5 | 5 | 100.0 |
total | 27 | 27 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package LINE::Bot::API::Response::WebhookTest; | ||||||
2 | 50 | 50 | 352 | use strict; | |||
50 | 109 | ||||||
50 | 1441 | ||||||
3 | 50 | 50 | 296 | use warnings; | |||
50 | 101 | ||||||
50 | 1215 | ||||||
4 | 50 | 50 | 264 | use parent 'LINE::Bot::API::Response::Common'; | |||
50 | 124 | ||||||
50 | 259 | ||||||
5 | |||||||
6 | 1 | 1 | 1 | 6 | sub success { $_[0]->{success} } | ||
7 | 1 | 1 | 1 | 408 | sub timestamp { $_[0]->{timestamp} } | ||
8 | 1 | 1 | 1 | 431 | sub statusCode { $_[0]->{statusCode} } | ||
9 | 1 | 1 | 1 | 404 | sub reason { $_[0]->{reason} } | ||
10 | 1 | 1 | 1 | 404 | sub detail { $_[0]->{detail} } | ||
11 | |||||||
12 | 1; | ||||||
13 | |||||||
14 | __END__ |