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   301 use strict;
  46         99  
  46         1282  
3 46     46   253 use warnings;
  46         93  
  46         1221  
4 46     46   1204 use parent 'LINE::Bot::API::Response::Common';
  46         89  
  46         1263  
5              
6 7     7 0 36 sub overview { $_[0]->{overview} }
7 12     12 0 58 sub messages { $_[0]->{messages} }
8 10     10 0 68 sub clicks { $_[0]->{clicks} }
9              
10             1;