File Coverage

blib/lib/IOC/Interfaces.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             package IOC::Interfaces;
3              
4 22     22   124 use strict;
  22         41  
  22         1192  
5 22     22   238 use warnings;
  22         44  
  22         1357  
6              
7             our $VERSION = '0.02';
8              
9             use Class::Interfaces (
10 22         190 'IOC::Visitable' => [ 'accept' ],
11             'IOC::Visitor' => [ 'visit' ],
12 22     22   36787 );
  22         52372  
13              
14             1;
15              
16             __END__