NAME

SmokeRunner::Multi::Runner - Base class for running test sets

VERSION

version 0.21

SYNOPSIS

  use base 'SmokeRunner::Multi::Runner';

  sub run_tests {
      ...
  }

DESCRIPTION

This class is the parent class for running tests. It provides a constructor, but subclasses are expected to provide a run_tests() method.

METHODS

This class provides the following methods:

SmokeRunner::Multi::Runner->new(...)

This method creates a new runner object. It requires one parameter:

  • set

    A SmokeRunner::Multi::TestSet object.

$runner->set()

Returns the test set object passed to the constructor.

$runner->run_tests()

This method should be implemented by subclasses.

AUTHOR

Dave Rolsky, <autarch@urth.org>

BUGS

Please report any bugs or feature requests to bug-smokerunner-multi@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Copyright 2007 LiveText, Inc., All Rights Reserved.

This program is free software; you can redistribute it and /or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.

AUTHORS

  • Dave Rolsky <autarch@urth.org>

  • Yanick Champoux <yanick@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2007 by LiveText, Inc..

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.