File Coverage

blib/lib/KinoSearch1/Highlight/Encoder.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 5 6 83.3
pod 1 1 100.0
total 19 21 90.4


line stmt bran cond sub pod time code
1             package KinoSearch1::Highlight::Encoder;
2 1     1   15573 use strict;
  1         2  
  1         35  
3 1     1   6 use warnings;
  1         2  
  1         27  
4 1     1   5 use KinoSearch1::Util::ToolSet;
  1         3  
  1         154  
5 1     1   7 use base qw( KinoSearch1::Util::Class );
  1         2  
  1         113  
6              
7             BEGIN {
8 1     1   11 __PACKAGE__->init_instance_vars();
9             }
10              
11 0     0 1   sub encode { shift->abstract_death }
12              
13             1;
14              
15             __END__