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.104.1'; | ||||||
4 | |||||||
5 | 3 | 3 | 256744 | use Moo; | |||
3 | 34871 | ||||||
3 | 15 | ||||||
6 | 3 | 3 | 6116 | use aliased 'OpenTracing::Implementation::Test::Tracer'; | |||
3 | 2308 | ||||||
3 | 19 | ||||||
7 | |||||||
8 | with 'OpenTracing::Implementation::Interface::Bootstrap'; | ||||||
9 | |||||||
10 | sub bootstrap_tracer { | ||||||
11 | my $class = shift; | ||||||
12 | return Tracer->new(@_); | ||||||
13 | } | ||||||
14 | |||||||
15 | 1; |