File Coverage

blib/lib/XML/SRS/UDAIValid.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1              
2             package XML::SRS::UDAIValid;
3 1     1   1435 use Moose;
  0            
  0            
4             use PRANG::Graph;
5             use XML::SRS::Types;
6              
7             # attributes
8             has_attr 'valid' =>
9             is => "ro",
10             isa => "XML::SRS::Boolean",
11             xml_name => "Valid",
12             ;
13              
14             # elements
15             # (none)
16              
17             sub root_element { 'UDAIValid' }
18              
19             with 'XML::SRS::ActionResponse';
20              
21             1;