File Coverage

blib/lib/LINE/Bot/API/Response/FriendDemographics.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 0 6 0.0
total 24 30 80.0


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::FriendDemographics;
2 50     50   348 use strict;
  50         111  
  50         1413  
3 50     50   248 use warnings;
  50         105  
  50         1203  
4 50     50   245 use parent 'LINE::Bot::API::Response::Common';
  50         107  
  50         243  
5              
6 1     1 0 4 sub available { $_[0]->{available} }
7 6     6 0 36 sub genders { $_[0]->{genders} }
8 4     4 0 21 sub ages { $_[0]->{ages} }
9 4     4 0 22 sub areas { $_[0]->{areas} }
10 6     6 0 46 sub appTypes { $_[0]->{appTypes} }
11 12     12 0 63 sub subscriptionPeriods { $_[0]->{subscriptionPeriods} }
12              
13             1;