File Coverage

blib/lib/KinoSearch1/Highlight/Formatter.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 18 21 85.7


line stmt bran cond sub pod time code
1             package KinoSearch1::Highlight::Formatter;
2 18     18   122 use strict;
  18         42  
  18         676  
3 18     18   99 use warnings;
  18         45  
  18         431  
4 18     18   103 use KinoSearch1::Util::ToolSet;
  18         34  
  18         2625  
5 18     18   208 use base qw( KinoSearch1::Util::Class );
  18         377  
  18         1718  
6              
7             BEGIN {
8 18     18   163 __PACKAGE__->init_instance_vars();
9             }
10              
11 0     0 0   sub highlight_term { shift->abstract_death }
12              
13             1;
14              
15             __END__