File Coverage

blib/lib/LINE/Bot/API/Response/TargetLimit.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::TargetLimit;
2 46     46   316 use strict;
  46         101  
  46         1271  
3 46     46   323 use warnings;
  46         97  
  46         3661  
4 46     46   360 use parent 'LINE::Bot::API::Response::Common';
  46         89  
  46         254  
5              
6 1     1 0 6 sub type { $_[0]->{type} }
7 1     1 0 4 sub value { $_[0]->{value} }
8              
9             1;