blib/lib/Test/Reporter/Transport.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 8 | 75.0 |
branch | 1 | 2 | 50.0 |
condition | n/a | ||
subroutine | 2 | 4 | 50.0 |
pod | 2 | 2 | 100.0 |
total | 11 | 16 | 68.7 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 4 | 4 | 16 | use strict; | |||
4 | 4 | ||||||
4 | 169 | ||||||
2 | 4 | 50 | 4 | 14 | BEGIN{ if (not $] < 5.006) { require warnings; warnings->import } } | ||
4 | 19 | ||||||
4 | 237 | ||||||
3 | package Test::Reporter::Transport; | ||||||
4 | |||||||
5 | our $VERSION = '1.62'; | ||||||
6 | |||||||
7 | 0 | 0 | 1 | sub new { die "Not implemented" } | |||
8 | |||||||
9 | 0 | 0 | 1 | sub send { die "Not implemented" } | |||
10 | |||||||
11 | 1; | ||||||
12 | |||||||
13 | # ABSTRACT: base class for Test::Reporter transports | ||||||
14 | |||||||
15 | __END__ |