line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test::Run::Obj; |
2
|
|
|
|
|
|
|
|
3
|
13
|
|
|
13
|
|
77167
|
use strict; |
|
13
|
|
|
|
|
29
|
|
|
13
|
|
|
|
|
344
|
|
4
|
13
|
|
|
13
|
|
70
|
use warnings; |
|
13
|
|
|
|
|
24
|
|
|
13
|
|
|
|
|
418
|
|
5
|
|
|
|
|
|
|
|
6
|
13
|
|
|
13
|
|
312
|
use 5.008; |
|
13
|
|
|
|
|
44
|
|
7
|
|
|
|
|
|
|
|
8
|
13
|
|
|
13
|
|
65
|
use vars qw(@ISA $VERSION); |
|
13
|
|
|
|
|
25
|
|
|
13
|
|
|
|
|
738
|
|
9
|
|
|
|
|
|
|
|
10
|
13
|
|
|
13
|
|
9887
|
use Test::Run::Core; |
|
13
|
|
|
|
|
46
|
|
|
13
|
|
|
|
|
193
|
|
11
|
13
|
|
|
13
|
|
12274
|
use Test::Run::Plugin::CmdLine::Output; |
|
13
|
|
|
|
|
58
|
|
|
13
|
|
|
|
|
157
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Test::Run::Obj - Run Perl standard test scripts with statistics |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 VERSION |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Version 0.0304 |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
$VERSION = '0.0304'; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
@ISA = (qw( |
26
|
|
|
|
|
|
|
Test::Run::Plugin::CmdLine::Output |
27
|
|
|
|
|
|
|
Test::Run::Core |
28
|
|
|
|
|
|
|
)); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 LICENSE |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This file is licensed under the MIT X11 License: |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
http://www.opensource.org/licenses/mit-license.php |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|