File Coverage

eg/001-single-file-hello/001.hopen.pl
Criterion Covered Total %
statement 12 24 50.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 28 57.1


line stmt bran cond sub pod time code
1             # 001-single-file-hello/001.hopen.pl
2              
3 1     1   9 use language 'C'; # uses <toolset>::C, and makes `C` an alias for it.
  1     1   3  
  1     1   6  
  1     1   8  
  1         2  
  1         7  
  1         9  
  1         2  
  1         54  
  1         8  
  1         3  
  1         5  
4             # The "language" package is synthesized by Data::Hopen::HopenFileKit.
5              
6 0         0 on check => {}; # Nothing to do during the Check phase
  0         0  
  0         0  
  0         0  
7              
8 0         0 $Build
  0         0  
  0         0  
  0         0  
9             ->H::files('hello.c', -name=>'FilesHello') # H is automatically loaded
10             ->C::compile(-name=>'CompileHello')
11             ->C::link('hello', -name=>'LinkHello')
12             ->default_goal;