File Coverage

blib/lib/Lab/Moose/Sweep/Continuous/Voltage.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Lab::Moose::Sweep::Continuous::Voltage;
2             $Lab::Moose::Sweep::Continuous::Voltage::VERSION = '3.881';
3             #ABSTRACT: Continuous sweep of voltage
4              
5 2     2   2768 use v5.20;
  2         13  
6              
7              
8 2     2   13 use Moose;
  2         4  
  2         16  
9 2     2   14638 use Carp;
  2         6  
  2         152  
10 2     2   17 use Time::HiRes 'time';
  2         7  
  2         21  
11              
12             extends 'Lab::Moose::Sweep::Continuous';
13              
14             has filename_extension => ( is => 'ro', isa => 'Str', default => 'Voltage=' );
15              
16             __PACKAGE__->meta->make_immutable();
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Lab::Moose::Sweep::Continuous::Voltage - Continuous sweep of voltage
28              
29             =head1 VERSION
30              
31             version 3.881
32              
33             =head1 SYNOPSIS
34              
35             use Lab::Moose;
36              
37             # FIXME
38              
39             =head1 COPYRIGHT AND LICENSE
40              
41             This software is copyright (c) 2023 by the Lab::Measurement team; in detail:
42              
43             Copyright 2018 Simon Reinhardt
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