Test::FITesque::Suite(3pm) | User Contributed Perl Documentation | Test::FITesque::Suite(3pm) |
Test::FITesque::Suite - FITesque test suite runner
my $suite = Test::FITesque::Suite->new(); my $test = Test::FITesque::Test->new(); my $suite2 = Test::FITesque::Suite->new(); ... $suite->add($test, $suite2, ...); my $test_count = $suite->test_count(); $suite->run_tests();
This package provides a way of running a suite of tests. It also allowed you to run suites of suites in whatever hierarchy you see fit.
my $suite = Test::FITesque::Suite->new();
This method is a simple constructor, but can take a single parameter within a hashref:
$suite->add($test, $suite2, ...);
This method allows you to add tests or suites to the current suite object.
my $count = $suite->test_count();
This method returns the test count for all tests within the suite.
$suite->run_tests();
This method will run all tests within a suite.
Scott McWhirter, "<konobi@cpan.org>"
Copyright 2007 Scott McWhirter, all rights reserved.
This program is released under the following license: BSD. Please see the LICENSE file included in this distribution for details.
2021-01-22 | perl v5.32.0 |