Test::Unit::Debug - framework debugging control
Contents
Name
Test::Unit::Debug - framework debugging control
Routines
debug_to_file($file)
Switch debugging to $file.
debug_to_stderr()
Switch debugging to STDERR (this is the default).
debug_pkg($pkg)
Enable debugging in package $pkg.
debug_pkgs(@pkgs)
Enable debugging in the packages @pkgs.
debug_pkg($pkg)
Enable debugging in package $pkg.
debug_pkgs(@pkgs)
Disable debugging in the packages @pkgs.
See Also
Test::Unit
perl v5.38.2 2024-07-27 Test::Unit::Debug(3pm)
Synopsis
package MyRunner;
use Test::Unit::Debug qw(debug_to_file debug_pkg);
debug_to_file('foo.log');
debug_pkg('Test::Unit::TestCase');
