File Coverage

blib/lib/WWW/Webrobot/Print/Null.pm
Criterion Covered Total %
statement 6 13 46.1
branch n/a
condition 0 3 0.0
subroutine 2 7 28.5
pod 0 5 0.0
total 8 28 28.5


line stmt bran cond sub pod time code
1             package WWW::Webrobot::Print::Null;
2 1     1   9 use strict;
  1         2  
  1         58  
3 1     1   7 use warnings;
  1         3  
  1         279  
4              
5             # Author: Stefan Trcek
6             # Copyright(c) 2004 ABAS Software AG
7              
8              
9             =head1 NAME
10              
11             WWW::Webrobot::Print::Null - Zero response output listener
12              
13             =head1 DESCRIPTION
14              
15             This module does nothing.
16             It is the default output listener.
17              
18             =head1 METHODS
19              
20             See L.
21              
22             =cut
23              
24             sub new {
25 0     0 0   my $class = shift;
26 0   0       my $self = bless({}, ref($class) || $class);
27 0           return $self;
28             }
29              
30 0     0 0   sub global_start {}
31 0     0 0   sub item_pre {}
32 0     0 0   sub item_post {}
33 0     0 0   sub global_end {}
34              
35             1;