File Coverage

blib/lib/IOC/Service/Prototype/SetterInjection.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package IOC::Service::Prototype::SetterInjection;
3              
4 6     6   33032 use strict;
  6         13  
  6         202  
5 6     6   33 use warnings;
  6         9  
  6         241  
6              
7             our $VERSION = '0.01';
8              
9 6     6   586 use IOC::Exceptions;
  6         14  
  6         164  
10              
11 6     6   37 use base 'IOC::Service::SetterInjection', 'IOC::Service::Prototype';
  6         19  
  6         1461  
12              
13             # make sure we use the prototype version
14             *instance = \&IOC::Service::Prototype::instance;
15              
16             1;
17              
18             __END__