The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Class::Moose::Reporting - Test information for Test::Class::Moose

VERSION

0.04

SYNOPSIS

 my $statistics = Test::Class::Moose::Reporting->new;

DESCRIPTION

For internal use only (maybe I'll expose it later). Not guaranteed to be stable.

ATTRIBUTES

* num_test_classes

Integer. The number of test classes run.

* num_test_methods

Integer. The number of test methods run.

num_tests

Integer. The number of tests run.

METHODS

inc_test_classes

    $statistics->inc_test_classes;        # increments by 1
    $statistics->inc_test_classes($x);    # increments by $x

inc_test_methods

    $statistics->inc_test_methods;        # increments by 1
    $statistics->inc_test_methods($x);    # increments by $x

inc_tests

    $statistics->inc_tests;        # increments by 1
    $statistics->inc_tests($x);    # increments by $x

AUTHOR

Curtis "Ovid" Poe, <ovid at cpan.org>

BUGS

Please report any bugs or feature requests to bug-test-class-moose at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Class-Moose. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Test::Class::Moose

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2012 Curtis "Ovid" Poe.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.