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 52     52   320 use strict;
  52         116  
  52         2131  
3 52     52   271 use warnings;
  52         139  
  52         2856  
4 52     52   300 use parent 'LINE::Bot::API::Response::Common';
  52         123  
  52         568  
5              
6 7     7 0 48 sub overview { $_[0]->{overview} }
7 12     12 0 106 sub messages { $_[0]->{messages} }
8 10     10 0 89 sub clicks { $_[0]->{clicks} }
9              
10             1;