• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/Test/

Lines Matching refs:to

5 # $^C was only introduced in 5.005-ish.  We do this to prevent
102 Test::Simple and Test::More have proven to be popular testing modules,
104 building block upon which to write your own test libraries I<which can
127 $Test ||= bless ['Move along, nothing to see here'], $class;
135 Reinitializes the Test::Builder singleton to its original state.
190 are. You usually only want to call one of these methods.
199 Tells Test::Builder what package you exported your functions to.
219 A convenient way to set up your tests. Call this and Test::Builder
232 die sprintf "You tried to plan twice! Second plan at %s line %d\n",
247 die "Got an undefined number of tests. Looks like you tried to ".
248 "say how many tests you plan to run but made a mistake.\n";
251 die "You said to run 0 tests! You've got to run something.\n";
268 Gets/sets the # of tests we expect this test to run and prints out
344 These actually run the tests, analogous to the functions in
363 # $test might contain an object which we don't want to accidentally
369 Carp::croak("You tried to run a test without a plan! Gotta have a plan.");
375 # In case $name is a string overloaded object, force it to stringify.
585 You'll want to avoid qr// if you want your tests to work before 5.005.
617 expressions as arguments, but need to work before perl 5.005.
671 $self->diag(" '$regex' doesn't look much like a regex to me.");
745 Indicates to the Test::Harness that things are going so badly all
776 Carp::croak("You tried to run tests without a plan! Gotta have a plan.");
808 to
820 Carp::croak("You tried to run tests without a plan! Gotta have a plan.");
851 Like skip(), only it skips all the rest of the tests you plan to run
873 Defaults to 1.
916 Defaults to on.
933 If set to true, no "1..N" header will be printed.
971 It's ok for your test to change where STDOUT and STDERR point to,
986 Output will be indented and marked with a # so as not to interfere
1010 # Convert undef to 'undef' so its readable.
1031 Prints to the output() filehandle.
1064 Like _print, but prints to the current diagnostic filehandle.
1083 Defaults to STDOUT.
1092 Defaults to STDERR.
1101 Defaults to STDOUT.
1178 # Set everything to unbuffered else plain prints to STDOUT will
1212 have to set this.
1216 can erase history if you really want to.
1285 'ok' is true if Test::Harness will consider the test to be a pass.
1334 todo() is pretty part about finding the right package to look for
1335 $TODO in. It uses the exported_to() package to find it. If that's
1336 not set, it's pretty good at guessing the right package to look at.
1339 for the $TODO variable. If you want to be sure, tell it explicitly
1340 what $pack to use.
1360 Like the normal caller(), except it reports according to your level().
1384 Runs a bunch of end of test sanity checks to make sure reality came
1403 A sanity check, similar to assert(). If the $check is true, something
1405 a note to contact the author.
1423 Perl seems to have some trouble with exiting inside an END block. 5.005_03
1424 and 5.6.1 both seem to do odd things. Instead, this function edits $?
1444 # We don't want to muck with death in an eval, but $^S isn't
1478 # ithreads. So we have to fill them in by hand. :(