Is there any way we can format the output generated in a file via utplsql? Example: We have say five different test scenarios generated via utplsql and moved to a .UTF file. Now I want to format the generated data in this file so that it can have an overall count of test cases, summary etc.
Is the above possible to achieve via utplsql?
Regards
Abhishek Das
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have attached a file which I have generated from utplsql. I need to format this file so that end user can understand by going through this file. Is there any way out, I have gone through the links in github in details but didn't find anything which can solve my purpose. May be I am missing out on something.
Hello
Is there any way we can format the output generated in a file via utplsql? Example: We have say five different test scenarios generated via utplsql and moved to a .UTF file. Now I want to format the generated data in this file so that it can have an overall count of test cases, summary etc.
Is the above possible to achieve via utplsql?
Regards
Abhishek Das
I have attached a file which I have generated from utplsql. I need to format this file so that end user can understand by going through this file. Is there any way out, I have gone through the links in github in details but didn't find anything which can solve my purpose. May be I am missing out on something.
Hi Abishek,
The project at sourceforge is not beeing maintained anymre.
It has been moved to github https://github.com/utPLSQL/utPLSQL
But to answer your question, utplsql v2 supports different reporters.
You can create your own reporter and use it in your project easily.
https://github.com/utPLSQL/utPLSQL/blob/master/source/ut_outputreporter.pks
https://github.com/utPLSQL/utPLSQL/blob/master/source/ut_outputreporter.pkb
So:
create a new packgate 'my_reporter' in your utplsql schema
set it as default reporter for your ut's (see: https://utplsql.github.io/docs/utconfig.html#setgetreporter )
Regards
Jacek