Hello,
My problem is the following.
I wish to test a procedure with a unit test (with Sql Developer).
------------- Procedure ---------------------------------------
CREATE OR REPLACE PROCEDURE() IS
IF global_variable = value 1 THEN
do stuff
ELSE
do other stuff.
---------------------------------------------------------------------
The thing is that this global_variable is private so I can not affect it in the Startup Process.
Does anyone know a way around it ?
Thank you for your help
PS :
I am under Oracle Database 10g so I can not use utPLSQL