File Coverage

blib/lib/Device/MindWave/Packet.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 3 3 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package Device::MindWave::Packet;
2              
3 12     12   24108 use strict;
  12         24  
  12         392  
4 12     12   59 use warnings;
  12         24  
  12         1016  
5              
6             sub new
7             {
8 2     2 1 1889 die "Abstract method 'new' not implemented.";
9             }
10              
11             sub as_string
12             {
13 2     2 1 2026 die "Abstract method 'as_string' not implemented.";
14             }
15              
16             sub as_bytes
17             {
18 2     2 1 1928 die "Abstract method 'as_bytes' not implemented.";
19             }
20              
21             1;
22              
23             __END__