File Coverage

blib/lib/WSST/Schema/Test.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package WSST::Schema::Test;
2              
3 5     5   27 use strict;
  5         19  
  5         164  
4 5     5   23 use base qw(WSST::Schema::Base);
  5         9  
  5         492  
5             __PACKAGE__->mk_accessors(qw(type name params));
6              
7             our $VERSION = '0.1.1';
8              
9             =head1 NAME
10              
11             WSST::Schema::Test - Schema::Test class of WSST
12              
13             =head1 DESCRIPTION
14              
15             This class represents the test element of schema.
16              
17             =head1 METHODS
18              
19             =head2 new
20              
21             Constructor.
22              
23             =head2 type
24              
25             Accessor for the type.
26              
27             =head2 name
28              
29             Accessor for the name.
30              
31             =head2 params
32              
33             Accessor for the params.
34              
35             =head1 SEE ALSO
36              
37             http://code.google.com/p/wsst/
38              
39             =head1 AUTHORS
40              
41             Mitsuhisa Oshikawa
42             Yusuke Kawasaki
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             Copyright 2008 WSS Project Team
47              
48             =cut
49             1;