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 9     9   142 use 5.006;
  9         28  
4 9     9   44 use strict;
  9         27  
  9         199  
5 9     9   26 use warnings;
  9         11  
  9         406  
6 9     9   3575 use App::Cmd::Setup -app;
  9         385516  
  9         56  
7              
8             sub global_opt_spec {
9 9     9 1 34449 return ( [ 'help|h' => "This usage screen." ], [ 'version|v' => "This usage screen." ], );
10             }
11              
12             1;