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 52     52   455 use strict;
  52         428  
  52         2092  
3 52     52   265 use warnings;
  52         102  
  52         2605  
4 52     52   281 use parent 'LINE::Bot::API::Response::Common';
  52         105  
  52         315  
5              
6 1     1 0 5 sub available { $_[0]->{available} }
7 6     6 0 32 sub genders { $_[0]->{genders} }
8 4     4 0 17 sub ages { $_[0]->{ages} }
9 4     4 0 25 sub areas { $_[0]->{areas} }
10 6     6 0 41 sub appTypes { $_[0]->{appTypes} }
11 12     12 0 79 sub subscriptionPeriods { $_[0]->{subscriptionPeriods} }
12              
13             1;