-
Notifications
You must be signed in to change notification settings - Fork 185
How to populate Unit test results in the tables #541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
same as #535 . i am working on a solution but i dont know if/when it'll be finished |
@nrkmca , @Shoelace What is it the problem statement, that you want to solve with this? My concerns are:
|
Let me join @jgebal on that. We discussed this topic multiple times and we came to exactly this conclusion. The database is the wrong place to store the history of test execution, it means the database becomes Stateful and it has different state on each run. Also you need to associate additional info with the run which is not available at the DB level, Git SHA-1 for example. |
yes i know and i agree.. i remember the discussions.. so for me the problem statement is: Ideally all of the surrounding guff will be replaced also. but as with a lot of businesses it requires taking baby-steps. |
Hi @jgebal, @Shoelace, @Pazus, |
@nrkmca - are you working for the same company as I am? |
@nrkmca PLSQL_PROFILER_DATA was never populated by utPLSQL v2 so it's hard to say it's an existing table from utPLSQL point of view - PLSQL_PROFILER_DATA is part of Oracle's DBMS_PROFILER. Did you look into utPLSQL v3 code coverage? If you read the doc , you'll find how to make use of utPLSQL v3 code coverage. v3 uses DBMS_PROFILER as wee and PLSQL_PROFILER_DATA gets populated when you run utPLSQL with coverage. |
Thank you Jgebal. I ran utPLSQL with coverage and able to populate the test case related information in the tables. I need little bit more information like unique run_id and test result in PLSQL_PROFILER_DATA/PLSQL_PROFILER_RUNs. but, You are saying which is not possible :-). |
utPLSQL v2 didn't have code coverage built into it. You must be using custom solution. |
Possible with custom reporter |
Hi,
Can you please let me know how to populate the test results in to existing tables?
Can you please help for above requirement?
The text was updated successfully, but these errors were encountered: