File Coverage

blib/lib/LINE/Bot/API/Event/AccountLink.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 6 7 85.7
pod 0 4 0.0
total 18 24 75.0


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Event::AccountLink;
2 47     47   304 use strict;
  47         102  
  47         1302  
3 47     47   230 use warnings;
  47         96  
  47         1208  
4 47     47   243 use parent 'LINE::Bot::API::Event::Base';
  47         93  
  47         238  
5              
6 0     0 0 0 sub is_account_link_event { 1 }
7              
8 1     1 0 5 sub source { $_[0]{source} }
9              
10 1     1 0 5 sub replyToken { $_[0]{replyToken} }
11              
12 4     4 0 5992 sub link { $_[0]{link} }
13              
14             1;