File Coverage

blib/lib/Device/MindWave/Packet/ThinkGear/DataValue.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 4 4 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Device::MindWave::Packet::ThinkGear::DataValue;
2              
3 11     11   661 use strict;
  11         18  
  11         364  
4 11     11   55 use warnings;
  11         18  
  11         1092  
5              
6             sub new
7             {
8 1     1 1 37 die "Abstract method 'new' not implemented.";
9             }
10              
11             sub as_string
12             {
13 1     1 1 1388 die "Abstract method 'as_string' not implemented.";
14             }
15              
16             sub as_hashref
17             {
18 1     1 1 1038 die "Abstract method 'as_hashref' not implemented.";
19             }
20              
21             sub as_bytes
22             {
23 1     1 1 1125 die "Abstract method 'as_bytes' not implemented.";
24             }
25              
26             1;
27              
28             __END__