File Coverage

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 52     52   365 use strict;
  52         106  
  52         2076  
3 52     52   268 use warnings;
  52         124  
  52         2928  
4 52     52   271 use parent 'LINE::Bot::API::Response::Common';
  52         96  
  52         281  
5              
6 1     1 1 4 sub success { $_[0]->{success} }
7 1     1 1 305 sub timestamp { $_[0]->{timestamp} }
8 1     1 1 265 sub statusCode { $_[0]->{statusCode} }
9 1     1 1 266 sub reason { $_[0]->{reason} }
10 1     1 1 276 sub detail { $_[0]->{detail} }
11              
12             1;
13              
14             __END__