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 52     52   308 use strict;
  52         93  
  52         2063  
3 52     52   283 use warnings;
  52         93  
  52         2742  
4 52     52   274 use parent 'LINE::Bot::API::Response::Common';
  52         119  
  52         312  
5              
6 1     1 0 5 sub type { $_[0]->{type} }
7 1     1 0 4 sub value { $_[0]->{value} }
8              
9             1;