Devel::Profiler::Test.3pm

Langue: en

Autres versions - même langue

Version: 2002-06-03 (fedora - 05/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

Devel::Profiler::Test - test support library for Devel::Profiler

SYNOPSIS

   # plan a test for each call to Devel::Profiler::Test
   use Test::More tests => 2;
   use Devel::Profiler::Test qw(profile_code check_tree);
 
   profile_code(<<END)
   ... some code to profile ...
   END
 
   check_tree(<<END)
   ... a tree in the format produced by dprofpp -T ...
   END
 
 

DESCRIPTION

This is a test support library for Devel::Profiler. It's probably only useful inside Devel::Profiler's test scripts, but you never know! Copyright (C) 2002 Sam Tregar

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

AUTHOR

Sam Tregar <sam@tregar.com>

SEE ALSO

Devel::Profiler