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 22     22   341 use 5.006;
  22         86  
4 22     22   108 use strict;
  22         36  
  22         459  
5 22     22   83 use warnings;
  22         30  
  22         1043  
6 22     22   8483 use App::Cmd::Setup -app;
  22         970908  
  22         143  
7              
8             sub global_opt_spec {
9 22     22 1 84202 return ( [ 'help|h' => "This usage screen." ], [ 'version|v' => "This usage screen." ], );
10             }
11              
12             1;