blib/lib/OpenTracing/Implementation/Test.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 6 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 8 | 8 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package OpenTracing::Implementation::Test; | ||||||
2 | |||||||
3 | our $VERSION = 'v0.103.1'; | ||||||
4 | |||||||
5 | 3 | 3 | 256691 | use Moo; | |||
3 | 35114 | ||||||
3 | 16 | ||||||
6 | 3 | 3 | 6077 | use aliased 'OpenTracing::Implementation::Test::Tracer'; | |||
3 | 2320 | ||||||
3 | 20 | ||||||
7 | |||||||
8 | with 'OpenTracing::Implementation::Interface::Bootstrap'; | ||||||
9 | |||||||
10 | sub bootstrap_tracer { | ||||||
11 | my $class = shift; | ||||||
12 | return Tracer->new(@_); | ||||||
13 | } | ||||||
14 | |||||||
15 | 1; |