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 46     46   302 use strict;
  46         101  
  46         1280  
3 46     46   224 use warnings;
  46         86  
  46         1222  
4 46     46   243 use parent 'LINE::Bot::API::Response::Common';
  46         92  
  46         221  
5              
6 1     1 0 6 sub available { $_[0]->{available} }
7 6     6 0 31 sub genders { $_[0]->{genders} }
8 4     4 0 20 sub ages { $_[0]->{ages} }
9 4     4 0 24 sub areas { $_[0]->{areas} }
10 6     6 0 37 sub appTypes { $_[0]->{appTypes} }
11 12     12 0 87 sub subscriptionPeriods { $_[0]->{subscriptionPeriods} }
12              
13             1;