File Coverage

xsi/LineString.xsi
Criterion Covered Total %
statement 9 9 100.0
branch 7 14 50.0
condition n/a
subroutine n/a
pod n/a
total 16 23 69.5


line stmt bran cond sub pod time code
1             MODULE = Geo::Geos PACKAGE = Geo::Geos::LineString
2             PROTOTYPES: DISABLE
3              
4 2           Point* LineString::getPointN(std::size_t n) { RETVAL = THIS->getPointN(n); }
5 1 50          
6 2           Point* LineString::getStartPoint() { RETVAL = THIS->getStartPoint(); }
7 1 50          
8 2           Point* LineString::getEndPoint() { RETVAL = THIS->getEndPoint(); }
9 1 50          
10 1 50         bool LineString::isClosed()
11              
12 1 50         bool LineString::isRing()
13              
14             BOOT {
15 46 50         Stash(__PACKAGE__).inherit("Geo::Geos::Lineal");
    50          
16             }