File Coverage

blib/lib/LINE/Bot/API/Response/UserInteractionStatistics.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 3 0.0
total 18 21 85.7


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::UserInteractionStatistics;
2 46     46   308 use strict;
  46         102  
  46         1327  
3 46     46   256 use warnings;
  46         97  
  46         1273  
4 46     46   274 use parent 'LINE::Bot::API::Response::Common';
  46         114  
  46         227  
5              
6 7     7 0 35 sub overview { $_[0]->{overview} }
7 12     12 0 64 sub messages { $_[0]->{messages} }
8 10     10 0 142 sub clicks { $_[0]->{clicks} }
9              
10             1;