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   213481 use Geo::Geos;
  28         62  
  28         1058  
4 28     28   1385 use Geo::Geos::Coordinate;
  28         58  
  28         657  
5 28     28   10801 use Geo::Geos::IntersectionMatrix;
  28         73  
  28         1074  
6 28     28   10484 use Geo::Geos::Point;
  28         64  
  28         1067  
7 28     28   7555 use Geo::Geos::PrecisionModel;
  28         69  
  28         1311  
8              
9             use overload
10 28         151 '""' => \&Geo::Geos::Geometry::toString,
11 28     28   188 'fallback' => 1;
  28         60  
12              
13             1;