File Coverage

blib/lib/Test/Stream/Compare/EventMeta.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 13 13 100.0
pod 0 9 0.0
total 34 43 79.0


line stmt bran cond sub pod time code
1             package Test::Stream::Compare::EventMeta;
2 100     100   1046 use strict;
  100         192  
  100         2687  
3 100     100   499 use warnings;
  100         189  
  100         2552  
4              
5 100     100   520 use Test::Stream::Compare::Meta;
  100         213  
  100         734  
6             use Test::Stream::HashBase(
7 100         680 base => 'Test::Stream::Compare::Meta',
8 100     100   609 );
  100         188  
9              
10 29     29 0 139 sub get_prop_file { $_[1]->debug->file }
11 34     34 0 122 sub get_prop_line { $_[1]->debug->line }
12 11     11 0 36 sub get_prop_package { $_[1]->debug->package }
13 5     5 0 19 sub get_prop_subname { $_[1]->debug->subname }
14 12     12 0 48 sub get_prop_skip { $_[1]->debug->skip }
15 11     11 0 59 sub get_prop_todo { $_[1]->debug->todo }
16 4     4 0 20 sub get_prop_trace { $_[1]->debug->trace }
17 1     1 0 8 sub get_prop_tid { $_[1]->debug->tid }
18 1     1 0 5 sub get_prop_pid { $_[1]->debug->pid }
19              
20             1;
21              
22             __END__