line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test::Run::Obj; |
2
|
|
|
|
|
|
|
|
3
|
7
|
|
|
7
|
|
96503
|
use strict; |
|
7
|
|
|
|
|
17
|
|
|
7
|
|
|
|
|
365
|
|
4
|
7
|
|
|
7
|
|
47
|
use warnings; |
|
7
|
|
|
|
|
14
|
|
|
7
|
|
|
|
|
238
|
|
5
|
|
|
|
|
|
|
|
6
|
7
|
|
|
7
|
|
192
|
use 5.008; |
|
7
|
|
|
|
|
30
|
|
|
7
|
|
|
|
|
315
|
|
7
|
|
|
|
|
|
|
|
8
|
7
|
|
|
7
|
|
39
|
use vars qw(@ISA $VERSION); |
|
7
|
|
|
|
|
16
|
|
|
7
|
|
|
|
|
457
|
|
9
|
|
|
|
|
|
|
|
10
|
7
|
|
|
7
|
|
5769
|
use Test::Run::Core; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
use Test::Run::Plugin::CmdLine::Output; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Test::Run::Obj - Run Perl standard test scripts with statistics |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 VERSION |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Version 0.0302 |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
$VERSION = '0.0302'; |
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
|
|
|
|
|
|
|
|