Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Cache::BaseCacheTester

Name Cache::BaseCacheTester
Version
Located at /usr/share/perl5
File /usr/share/perl5/Cache/BaseCacheTester.pm
Is Core No
Search CPAN for this module Cache::BaseCacheTester
Documentation Cache::BaseCacheTester
Module Details Cache::BaseCacheTester


NAME

Cache::BaseCacheTester -- abstract cache tester base class


DESCRIPTION

BaseCacheTester provides functionality common to all instances of a class that will test cache implementations.


SYNOPSIS

BaseCacheTester provides functionality common to all instances of a class that will test cache implementations.

  package Cache::MyCacheTester;
  use vars qw( @ISA );
  use Cache::BaseCacheTester;
  @ISA = qw( Cache::BaseCacheTester );


METHODS

new( $base_test_count )
Construct a new BaseCacheTester and initialize the test count to $base_test_count.

ok( )
Print a message to stdout in the form ``ok $test_count'' and increments the test count.

not_ok( $message )
Print a message to stdout in the form ``not ok $test_count # $message '' and increments the test count.

skip( $message )
Print a message to stdout in the form ``ok $test_count # skipped $message '' and increments the test count.


SEE ALSO

Cache::CacheTester, Cache::SizeAwareCacheTester


AUTHOR

Original author: DeWitt Clinton <dewitt@unto.net>

Last author: $Author: dclinton $

Copyright (C) 2001-2003 DeWitt Clinton

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026