File Coverage

blib/lib/Test/OpenTracing/Interface/SpanContext.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 26 26 100.0


line stmt bran cond sub pod time code
1             package Test::OpenTracing::Interface::SpanContext;
2              
3             =head1 NAME
4              
5             Test::OpenTracing::Interface::SpanContext - compliance testing
6              
7             =head1 SYNOPSIS
8              
9             use Test::OpenTracing::Interface::SpanContext qw/:all/;
10            
11             can_all_ok 'MyImplementation::SpanContext',
12             "MyImplementation class does have all subs defined, well done!";
13            
14             my $test_thing = MyImplementation::SpanContext->new ( ... );
15            
16             can_all_ok( $test_thing,
17             "An object constructed by 'new' has all required subs defined"
18             );
19              
20             =cut
21              
22 3     3   379523 use strict;
  3         43  
  3         91  
23 3     3   17 use warnings;
  3         6  
  3         121  
24              
25             our $VERSION = '0.03_001';
26              
27              
28 3     3   1292 use Test::OpenTracing::Interface;
  3         12  
  3         136  
29              
30 3     3   25 use Exporter qw/import/;
  3         8  
  3         190  
31              
32             our @EXPORT_OK = qw/can_all_ok/;
33             our %EXPORT_TAGS = ( all => [qw/can_all_ok/] );
34              
35 3     3   1391 use syntax qw/maybe/;
  3         63754  
  3         15  
36              
37              
38              
39             =head1 DESCRIPTION
40              
41             This package will provide the tests as described in
42             L.
43              
44              
45              
46             =head1 EXPORTED SUBROUTINES
47              
48             =cut
49              
50              
51              
52             =head2 C
53              
54             Test that all methods mentioned in L
55             are defined.
56              
57             =cut
58              
59             sub can_all_ok {
60 3     3 1 9149 my $thing = shift;
61 3         7 my $message = shift;
62            
63 3         53 my $Test = Test::OpenTracing::Interface::CanAll->new(
64             test_this => $thing,
65             interface_name => 'SpanContext',
66             interface_methods => [
67             'get_baggage_item',
68             'get_baggage_items',
69             'with_baggage_item',
70             'with_baggage_items',
71             ],
72             maybe
73             message => $message,
74             );
75            
76 3         3377 return $Test->run_tests;
77             }
78              
79              
80              
81             =head1 SEE ALSO
82              
83             =over
84              
85             =item L
86              
87             Test OpenTracing::Interface compliance.
88              
89             =item L
90              
91             Defines the ContextReference.
92              
93             =back
94              
95              
96              
97             =head1 AUTHOR
98              
99             Theo van Hoesel
100              
101              
102              
103             =head1 COPYRIGHT AND LICENSE
104              
105             'Test OpenTracing' is Copyright (C) 2020, Perceptyx Inc
106              
107             This library is free software; you can redistribute it and/or modify it under
108             the terms of the Artistic License 2.0.
109              
110             This library is distributed in the hope that it will be useful, but it is
111             provided "as is" and without any express or implied warranties.
112              
113             For details, see the full text of the license in the file LICENSE.
114              
115              
116              
117             =cut
118              
119             1;