1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/usr/bin/perl use lib unit; use strict; use Test::Unit::Debug qw(debug_pkgs); use Test::Unit::TestRunner; use RQGRunner; # Uncomment and edit to debug individual packages. # debug_pkgs(qw/Test::Unit::TestCase/); my $testrunner = RQGRunner->new(); my $result = $testrunner->start(@ARGV); exit $result; |