File Coverage

xsi/noding/IteratedNoder.xsi
Criterion Covered Total %
statement 6 7 85.7
branch 11 22 50.0
condition n/a
subroutine n/a
pod n/a
total 17 29 58.6


line stmt bran cond sub pod time code
1             MODULE = Geo::Geos PACKAGE = Geo::Geos::Noding::IteratedNoder
2             PROTOTYPES: DISABLE
3              
4             Sv new(SV*, SV* precisionModel) {
5 2 50         PrecisionModel& pm = xs::in(precisionModel);
6 4 50         Object wrapped = xs::out(new IteratedNoder(&pm));
    50          
    50          
    50          
    50          
7 2 50         wrapped.payload_attach(precisionModel, &payload_marker);
8 2 50         RETVAL = wrapped.ref();
    50          
9             }
10              
11 1           void IteratedNoder::setMaximumIterations (int n)
12              
13 0           int CLONE_SKIP (...) { PERL_UNUSED_VAR(items); RETVAL = 1; }
14              
15             BOOT {
16 46 50         Stash(__PACKAGE__).inherit("Geo::Geos::Noding::Noder");
    50          
17             }