File Coverage

blib/lib/Algorithm/SpatialIndex/Node.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Algorithm::SpatialIndex::Node;
2 9     9   335 use 5.008001;
  9         70  
  9         395  
3 9     9   211 use strict;
  9         20  
  9         287  
4 9     9   51 use warnings;
  9         15  
  9         475  
5 9     9   51 use Carp qw(croak);
  9         16  
  9         711  
6              
7             use Class::XSAccessor {
8 9         86 constructor => 'new',
9             accessors => [qw(
10             id
11             subnode_ids
12             coords
13             )],
14 9     9   9991 };
  9         31194  
15              
16             1;
17             __END__