1Test::Unit(3) User Contributed Perl Documentation Test::Unit(3)
2
3
4
6 Test::Unit - the PerlUnit testing framework
7
9 This package provides only the project version number, copyright texts,
10 and a framework overview in POD format.
11
13 This framework is intended to support unit testing in an object-
14 oriented development paradigm (with support for inheritance of tests
15 etc.) and is derived from the JUnit testing framework for Java by Kent
16 Beck and Erich Gamma. To start learning how to use this framework, see
17 Test::Unit::TestCase and Test::Unit::TestSuite. (There will also
18 eventually be a tutorial in Test::Unit::Tutorial.
19
20 However "Test::Unit::Procedural" is the procedural style interface to a
21 sophisticated unit testing framework for Perl that . Test::Unit is
22 intended to provide a simpler interface to the framework that is more
23 suitable for use in a scripting style environment. Therefore,
24 Test::Unit does not provide much support for an object-oriented
25 approach to unit testing.
26
28 Copyright (c) 2000-2002, 2005 the PerlUnit Development Team (see the
29 AUTHORS file included in this distribution).
30
31 All rights reserved. This program is free software; you can
32 redistribute it and/or modify it under the same terms as Perl itself.
33
34 That is, under the terms of either of:
35
36 • The GNU General Public License as published by the Free Software
37 Foundation; either version 1, or (at your option) any later
38 version.
39
40 The text of version 2 is included in the PerlUnit distribution
41 package as COPYING.GPL-2.
42
43 • The "Artistic License" which comes with Perl.
44
45 The text of this is included in the PerlUnit distribution package
46 as COPYING.Artistic.
47
49 • Test::Unit::TestCase
50
51 • Test::Unit::TestSuite
52
53 • Test::Unit::Procedural
54
56 The Perl Unit development team are humans. In part we develop stuff
57 because it scratches our collective itch but we'd also really like to
58 know if it scratches yours.
59
60 Please subscribe to the perlunit-users mailing list at
61 <http://lists.sourceforge.net/lists/listinfo/perlunit-users> and let us
62 know what you love and hate about PerlUnit and what else you want to do
63 with it.
64
65
66
67perl v5.38.0 2023-07-21 Test::Unit(3)