File Coverage

blib/lib/Lab/Connection/VICP/Trace.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package Lab::Connection::VICP::Trace;
2             #ABSTRACT: ???
3             $Lab::Connection::VICP::Trace::VERSION = '3.881';
4 1     1   1964 use v5.20;
  1         4  
5              
6 1     1   5 use warnings;
  1         2  
  1         26  
7 1     1   5 use strict;
  1         2  
  1         22  
8              
9 1     1   5 use parent 'Lab::Connection::VICP';
  1         4  
  1         6  
10              
11 1     1   75 use Role::Tiny::With;
  1         2  
  1         47  
12 1     1   7 use Carp;
  1         4  
  1         65  
13 1     1   7 use autodie;
  1         2  
  1         5  
14              
15             our %fields = (
16             logfile => undef,
17             log_index => 0,
18             );
19              
20             with 'Lab::Connection::Trace';
21              
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =encoding UTF-8
29              
30             =head1 NAME
31              
32             Lab::Connection::VICP::Trace - ???
33              
34             =head1 VERSION
35              
36             version 3.881
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is copyright (c) 2023 by the Lab::Measurement team; in detail:
41              
42             Copyright 2016 Charles Lane
43             2017 Andreas K. Huettel
44             2020 Andreas K. Huettel
45              
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut