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 46     46   337 use strict;
  46         101  
  46         1288  
3 46     46   244 use warnings;
  46         97  
  46         1012  
4 46     46   845 use utf8;
  46         110  
  46         340  
5 46     46   1295 use parent 'LINE::Bot::API::Response::Common';
  46         125  
  46         224  
6              
7 0     0 0   sub link_token { $_[0]->{linkToken} }
8              
9             1;
10