logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Cache::BaseCacheTester -- abstract cache tester base class

Author

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

       Last author:     $Author: dclinton $

       Copyright (C) 2001-2003 DeWitt Clinton

perl v5.34.0                                       2022-06-30                        Cache::BaseCacheTester(3pm)

Description

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

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.

Name

       Cache::BaseCacheTester -- abstract cache tester base class

See Also

       Cache::CacheTester, Cache::SizeAwareCacheTester

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 );

See Also