File Coverage

blib/lib/SOAP/WSDL/XSD/AttributeGroup.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package SOAP::WSDL::XSD::AttributeGroup;
2 1     1   321077 use strict;
  1         5  
  1         72  
3 1     1   9 use warnings;
  1         3  
  1         72  
4 1     1   5869 use Class::Std::Fast::Storable constructor => 'none';
  1         31086  
  1         13  
5 1     1   190 use base qw(SOAP::WSDL::Base);
  1         2  
  1         794  
6              
7 1     1   7 use version; our $VERSION = qv('3.001');
  1         1  
  1         5  
8              
9             #
10             # id = ID
11             # name = NCName
12             # ref = QName
13             # {any attributes with non-schema namespace . . .}>
14             # Content: (annotation?, ((attribute | attributeGroup)*, anyAttribute?))
15             #
16              
17             # id provided by Base
18             # name provided by Base
19             # annotation provided by Base
20              
21             my %ref_of :ATTR(:name :default<()>);
22              
23             # may be defined as atomic simpleType
24             my %attribute_of :ATTR(:name :default<()>);
25             my %attributeGroup_of :ATTR(:name :default<()>);
26              
27             1;