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   218220 use Geo::Geos;
  28         69  
  28         1092  
4 28     28   1453 use Geo::Geos::Coordinate;
  28         55  
  28         675  
5 28     28   11264 use Geo::Geos::IntersectionMatrix;
  28         77  
  28         1023  
6 28     28   10714 use Geo::Geos::Point;
  28         69  
  28         1104  
7 28     28   7290 use Geo::Geos::PrecisionModel;
  28         80  
  28         1304  
8              
9             use overload
10 28         152 '""' => \&Geo::Geos::Geometry::toString,
11 28     28   193 'fallback' => 1;
  28         74  
12              
13             1;