File Coverage

inc/lib/TestML/Bridge.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 11 12 91.6


line stmt bran cond sub pod time code
1 2     2   1323 use strict; use warnings;
  2     2   4  
  2         81  
  2         9  
  2         3  
  2         199  
2             package TestML::Bridge;
3              
4             sub new {
5 2     2 0 4 my $class = shift;
6              
7 2         8 bless {@_}, $class;
8             }
9              
10             1;