File Coverage

blib/lib/IOC.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1              
2             package IOC;
3              
4 4     4   138379 use strict;
  4         11  
  4         169  
5 4     4   23 use warnings;
  4         11  
  4         219  
6              
7             our $VERSION = '0.29';
8              
9 4     4   1852 use IOC::Exceptions;
  4         14  
  4         125  
10              
11 4     4   2787 use IOC::Container;
  4         16  
  4         146  
12 4     4   18136 use IOC::Service;
  4         13  
  4         133  
13 4     4   2556 use IOC::Service::Literal;
  4         9  
  4         104  
14 4     4   1984 use IOC::Registry;
  4         15  
  4         129  
15 4     4   2507 use IOC::Proxy;
  4         11  
  4         217  
16              
17             1;
18              
19             __END__