File Coverage

blib/lib/Lingua/BioYaTeA/Corpus.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Lingua::BioYaTeA::Corpus;
2              
3 3     3   52275 use strict;
  3         7  
  3         117  
4 3     3   18 use warnings;
  3         6  
  3         93  
5 3     3   1124 use utf8;
  3         15  
  3         20  
6              
7 3     3   3872 use Lingua::YaTeA::Corpus;
  3         307774  
  3         215  
8              
9             our @ISA = qw(Lingua::YaTeA::Corpus);
10              
11             our $VERSION=$Lingua::BioYaTeA::VERSION;
12              
13             sub new
14             {
15 3     3 1 79 my ($class,$path,$option_set,$message_set) = @_;
16              
17 3         54 my $this = $class->SUPER::new($path,$option_set,$message_set);
18 3         5815 bless ($this,$class);
19              
20 3         13 return $this;
21             }
22              
23              
24             1;
25              
26             __END__