File Coverage

blib/lib/Algorithm/Classifier/IsolationForest/App.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Algorithm::Classifier::IsolationForest::App;
2              
3 81     81   1309 use 5.006;
  81         253  
4 81     81   439 use strict;
  81         177  
  81         1794  
5 81     81   283 use warnings;
  81         167  
  81         4014  
6 81     81   31143 use App::Cmd::Setup -app;
  81         3557360  
  81         558  
7              
8             sub global_opt_spec {
9 81     81 1 316809 return ( [ 'help|h' => "This usage screen." ], [ 'version|v' => "This usage screen." ], );
10             }
11              
12             1;