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   304 use strict;
  46         93  
  46         1369  
3 46     46   234 use warnings;
  46         89  
  46         1027  
4 46     46   894 use utf8;
  46         104  
  46         358  
5 46     46   1233 use parent 'LINE::Bot::API::Response::Common';
  46         135  
  46         665  
6              
7 0     0 0   sub link_token { $_[0]->{linkToken} }
8              
9             1;
10