File Coverage

blib/lib/RPerl/Test/Include/Class_00_Good.pm
Criterion Covered Total %
statement 72 72 100.0
branch n/a
condition n/a
subroutine 24 24 100.0
pod n/a
total 96 96 100.0


line stmt bran cond sub pod time code
1             # [[[ HEADER ]]]
2 1     1   10 use RPerl;
  1         4  
  1         16  
3             package RPerl::Test::Include::Class_00_Good;
4             use strict;
5 1     1   71 use warnings;
  1         6  
  1         343  
6 1     1   11 our $VERSION = 0.001_000;
  1         5  
  1         175  
7              
8 1     1   8 # [[[ OO INHERITANCE ]]]
  1         5  
  1         122  
9             use parent qw(RPerl::Test);
10             use RPerl::Test;
11              
12             # [[[ INCLUDES ]]]
13 1     1   12 use RPerl::Test::Foo;
  1         5  
  1         54  
14 1     1   8 use RPerl::Test::Bar;
  1         43  
  1         16  
15              
16             # [[[ OO PROPERTIES ]]]
17 1     1   107 our hashref $properties
  1         5  
  1         282  
18 1     1   9 = { empty_property => my integer $TYPED_empty_property = 2 };
  1         4  
  1         10  
19              
20             # [[[ SUBROUTINES & OO METHODS ]]]
21 1     1   67 our integer::method $empty_method = sub {
  1         3  
  1         25  
22 1     1   8 return 2;
  1         2  
  1         7  
23             };
24              
25 1     1   55 1; # end of class
  1         2  
  1         181