You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When writing testcases for a long procedure containing 3000 to 4000 lines, executing the testcases is taking a lot of time, for which it is being a time consumed process.
Even the report generation for such testcases is taking pretty long time to execute.
Please suggest any resolution to overcome this issue.
Thanks
The text was updated successfully, but these errors were encountered:
However, based on these information it is very difficult to reproduce the behaviour you are describing. This is really step 1 in solving an issue. Therefore, you really help us (and in the end yourself) if you take the time and provide the information we need for a bug report. You should have seen them when you opened this issue.
Thanks.
Here they are:
Describe the bug
A clear and concise description of what the bug is.
Provide version info
Information about utPLSQL and Database version,
set serveroutput on
declare
l_version varchar2(255);
l_compatibility varchar2(255);
begindbms_utility.db_version( l_version, l_compatibility );
dbms_output.put_line( l_version );
dbms_output.put_line( l_compatibility );
end;
/select substr(ut.version(),1,60) as ut_version from dual;
select*from v$version;
select*from nls_session_parameters;
select substr(dbms_utility.port_string,1,60) as port_string from dual;
Information about client software
What client was used to run utPLSQL tests? Was it from TOAD, SQLDeveloper, SQLPlus, PLSQL Developer etc...
To Reproduce
Steps to reproduce the behavior:
Go to '...'
Click on '....'
Scroll down to '....'
See error
Expected behavior
A clear and concise description of what you expected to happen.
Example code
If applicable, add sample code to help explain your problem.
Please avoid putting your company private/protected code in an issue, as it might violate your company's privacy and security policies.
When writing testcases for a long procedure containing 3000 to 4000 lines, executing the testcases is taking a lot of time, for which it is being a time consumed process.
Even the report generation for such testcases is taking pretty long time to execute.
Please suggest any resolution to overcome this issue.
Thanks
The text was updated successfully, but these errors were encountered: