File Coverage

blib/lib/LINE/Bot/API/Response/IssueLinkToken.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 19 84.2


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::IssueLinkToken;
2 52     52   315 use strict;
  52         113  
  52         2226  
3 52     52   312 use warnings;
  52         99  
  52         2629  
4 52     52   1166 use utf8;
  52         822  
  52         456  
5 52     52   2271 use parent 'LINE::Bot::API::Response::Common';
  52         134  
  52         422  
6              
7 0     0 0   sub link_token { $_[0]->{linkToken} }
8              
9             1;
10