File Coverage

blib/arch/Geo/Geos/Geometry.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Geo::Geos::Geometry;
2              
3 28     28   280737 use Geo::Geos;
  28         49  
  28         930  
4 28     28   1164 use Geo::Geos::Coordinate;
  28         47  
  28         570  
5 28     28   8762 use Geo::Geos::IntersectionMatrix;
  28         63  
  28         848  
6 28     28   8403 use Geo::Geos::Point;
  28         62  
  28         910  
7 28     28   5814 use Geo::Geos::PrecisionModel;
  28         59  
  28         1069  
8              
9             use overload
10 28         161 '""' => \&Geo::Geos::Geometry::toString,
11 28     28   158 'fallback' => 1;
  28         47  
12              
13             1;