| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package TAP::DOM::Summary; |
|
2
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:SCHWIGON'; |
|
3
|
|
|
|
|
|
|
# ABSTRACT: Accessors for TAP::DOM summary part |
|
4
|
|
|
|
|
|
|
$TAP::DOM::Summary::VERSION = '0.95'; |
|
5
|
19
|
|
|
19
|
|
277
|
use 5.006; |
|
|
19
|
|
|
|
|
49
|
|
|
6
|
19
|
|
|
19
|
|
79
|
use strict; |
|
|
19
|
|
|
|
|
27
|
|
|
|
19
|
|
|
|
|
322
|
|
|
7
|
19
|
|
|
19
|
|
79
|
use warnings; |
|
|
19
|
|
|
|
|
28
|
|
|
|
19
|
|
|
|
|
936
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
use Class::XSAccessor |
|
10
|
19
|
|
|
|
|
154
|
chained => 1, |
|
11
|
|
|
|
|
|
|
constructor => 'new', |
|
12
|
|
|
|
|
|
|
accessors => [qw( failed |
|
13
|
|
|
|
|
|
|
parse_errors |
|
14
|
|
|
|
|
|
|
passed |
|
15
|
|
|
|
|
|
|
skipped |
|
16
|
|
|
|
|
|
|
todo |
|
17
|
|
|
|
|
|
|
todo_passed |
|
18
|
|
|
|
|
|
|
wait |
|
19
|
|
|
|
|
|
|
exit |
|
20
|
|
|
|
|
|
|
elapsed |
|
21
|
|
|
|
|
|
|
elapsed_timestr |
|
22
|
|
|
|
|
|
|
all_passed |
|
23
|
|
|
|
|
|
|
status |
|
24
|
|
|
|
|
|
|
total |
|
25
|
|
|
|
|
|
|
has_problems |
|
26
|
|
|
|
|
|
|
has_errors |
|
27
|
19
|
|
|
19
|
|
108
|
)]; |
|
|
19
|
|
|
|
|
28
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__END__ |