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 50     50   337 use strict;
  50         115  
  50         1433  
3 50     50   284 use warnings;
  50         115  
  50         1156  
4 50     50   1022 use utf8;
  50         116  
  50         446  
5 50     50   1543 use parent 'LINE::Bot::API::Response::Common';
  50         114  
  50         292  
6              
7 0     0 0   sub link_token { $_[0]->{linkToken} }
8              
9             1;
10