File Coverage

lib/Spreadsheet/Engine/Function/ERRCELL.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Spreadsheet::Engine::Function::ERRCELL;
2              
3 28     28   152 use strict;
  28         228  
  28         965  
4 28     28   154 use warnings;
  28         64  
  28         745  
5              
6 28     28   139 use base 'Spreadsheet::Engine::Fn::base';
  28         53  
  28         3523  
7              
8 1     1 1 5 sub argument_count { 0 }
9              
10 1     1 1 6 sub result { Spreadsheet::Engine::Error->ref }
11              
12             1;
13              
14             __END__