File Coverage

test-lib/Car/Mercedes.pm
Criterion Covered Total %
statement 7 10 70.0
branch n/a
condition 1 3 33.3
subroutine 3 6 50.0
pod 0 4 0.0
total 11 23 47.8


line stmt bran cond sub pod time code
1             package Car::Mercedes;
2              
3 3     3   3585 use Class::Interface;
  3         6  
  3         228  
4             implements 'Car::Interface', 'Car::Runnable';
5              
6 3     3   24 use base 'Car::German';
  3         37  
  3         2254  
7              
8             sub new {
9 1   33 1 0 1120 return bless( {}, ref($_[0]) || $_[0] );
10             }
11              
12             sub openDoors {
13 0     0 0   print "Doors open upwards -- this ist eine Gullwing :->";
14             }
15             sub closeDoors {
16 0     0 0   print "Doors close downwards"
17             }
18              
19             sub run {
20 0     0 0   print "Look... I am flying over the german speeeeeedways"
21             }
22              
23             1;