File: Tutorial.pm

package info (click to toggle)
libtest-unit-perl 0.27-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,312 kB
  • sloc: perl: 4,297; makefile: 5
file content (61 lines) | stat: -rw-r--r-- 1,219 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package Test::Unit::Tutorial;

# this is only a container for the Test::Unit tutorial
# to allow viewing tutorial-style documentation on
# unit testing by way of the perldoc utility.

1;
__END__

=head1 NAME

Test::Unit::Tutorial - Tutorial on unit testing

=head1 SYNOPSIS

    perldoc Test::Unit::Tutorial

=head1 DESCRIPTION

Here should be extensive documentation on what unit testing is, why it
is useful, and how to do it with the Test::Unit collection of modules.

Sorry for not implementing this yet.

Please have a look at the examples in the examples directory and read
the F<README> file that came with this distribution.

A short tutorial on how to use the unit testing framework is included
in L<Test::Unit::TestCase>.

Further examples can be found by looking at the self test collection,
starting in t::tlib::AllTests.

=head1 AUTHOR

Christian Lemburg E<lt>lemburg@acm.orgE<gt>

=head1 SEE ALSO

=over 4

=item *

The module documentation for all modules in the Test::Unit tree.

=item *

I<Refactoring. Improving The Design Of Existing Code.>
Martin Fowler. Addison-Wesley, 1999.

=item *

The JUnit (unit testing framework for Java) documentation. 

=item *

http://www.xProgramming.com/

=back

=cut