File Coverage

lib/Spreadsheet/Engine/Function/FALSE.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::FALSE;
2              
3 28     28   158 use strict;
  28         61  
  28         1089  
4 28     28   150 use warnings;
  28         56  
  28         745  
5              
6 28     28   142 use base 'Spreadsheet::Engine::Fn::logical';
  28         74  
  28         3423  
7              
8 856     856 1 2055 sub argument_count { 0 }
9              
10 856     856 1 2363 sub calculate { 0 }
11              
12             1;
13              
14             __END__