File Coverage

blib/lib/Win32/Mock/Win32/Daemon.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package # hide from PAUSE
2             Win32::Daemon;
3 1     1   7173 use strict;
  1         22  
  1         36  
4 1     1   6 use warnings;
  1         1  
  1         38  
5 1     1   5 use Exporter ();
  1         1  
  1         14  
6 1     1   538 use Win32::Service;
  1         2  
  1         128  
7              
8 1     1   5 { no strict;
  1         3  
  1         56  
9             @ISA = qw(Exporter);
10             @EXPORT = qw();
11             }
12              
13              
14              
15             1