File Coverage

blib/lib/cPanel/MemTest.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 cPanel::MemTest;
2              
3 2     2   54877 use strict;
  2         5  
  2         60  
4 2     2   9 use Carp ();
  2         4  
  2         34  
5 2     2   10 use vars qw(@EXPORT_OK @ISA $VERSION);
  2         7  
  2         124  
6              
7 2     2   1530 use AutoLoader;
  2         3263  
  2         11  
8             require DynaLoader;
9 2     2   78 use Exporter ();
  2         3  
  2         118  
10              
11             @ISA = qw(Exporter DynaLoader);
12             @EXPORT_OK = qw(testallocate);
13              
14             $VERSION = '0.3';
15              
16             bootstrap cPanel::MemTest $VERSION;
17              
18             1;
19              
20             __END__