[ Home | Getting Started | Build Test Packages | Examples | User Guide | Release Notes | Document Map ]
< Previous Section: utConfig Package | Next Section: utAssert Package >
This package contains the following procedures and functions:
PROCEDURE utResult.init;
PROCEDURE utResult.show (reset_in IN BOOLEAN := FALSE); PROCEDURE utResult.showone (indx_in in pls_integer); PROCEDURE utResult.showlast;Use the show procedure to display the full set of results stored in the utResult array. If you pass TRUE for its single argument, the results informatino will be initialized.
Use the showone procedure to show the Nth result.
Use the showlast procedure to show the results of the last test run.
FUNCTION utResult.success RETURN BOOLEAN; FUNCTION utResult.failure RETURN BOOLEAN;
PROCEDURE utResult.firstresult; FUNCTION utResult.nextresult RETURN utResult.result_rt; PROCEDURE utResult.nextresult ( name_out OUT VARCHAR2, msg_out OUT VARCHAR2, case_indx_out OUT PLS_INTEGER ); FUNCTION utResult.nthresult (indx_in IN PLS_INTEGER) RETURN utResult.result_rt; PROCEDURE utResult.nthresult ( indx_in IN PLS_INTEGER, name_out OUT VARCHAR2, msg_out OUT VARCHAR2, case_indx_out OUT PLS_INTEGER ); FUNCTION utResult.resultcount RETURN PLS_INTEGER;
The following procedures turn on or off the display of success messages. In other words, when turned on (as is the default) a message will be displayed for each successful assertion. The specifications are as follows:
procedure include_successes; procedure ignore_successes;
< Previous Section: utConfig Package | Next Section: utAssert Package >
Copyright (C) 2000-2005 Steven Feuerstein, Chris Rimmer, Patrick Barel All rights reserved