Test::Count::Base - Base Class for Test::Count.


Test-Count documentation Contained in the Test-Count distribution.

Index


Code Index:

NAME

Top

Test::Count::Base - Base Class for Test::Count.

FUNCTIONS

Top

Test::Count::Base->new({ 'param1' => $value1, 'param2' => $value2});

Initialises Test::Count::Base using the _init() abstract method.

AUTHOR

Top

Shlomi Fish, http://www.shlomifish.org/ .

BUGS

Top

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

SUPPORT

Top

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

    perldoc Test::Count

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Test::Count

* CPAN Ratings

http://cpanratings.perl.org/d/Test::Count

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test::Count

* Search CPAN

http://search.cpan.org/dist/Test::Count

SEE ALSO

Top

Test::Count, Test::Count::Parser

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Test-Count documentation Contained in the Test-Count distribution.
package Test::Count::Base;

use strict;
use warnings;

sub new
{
    my $class = shift;
    my $self = {};

    bless $self, $class;
    $self->_init(@_);
    
    return $self;
}

1;

__END__