Current behavior:
For the "utoutputreporter.pkb",
1. There is no total count of "utAssert.xxx()" executed in the testing package.
2. The format of section, package-based, done is not clear
eg:
exec utplsql.test ('myPackage');
In the output:
...
'SUCCESS: "myPackage"
...
Desired behavior:
In the output, we'd like to show:
...
- - - - - - - - SUCCESS: "myPackage (15 scenarioes executed)" - - - - - - - -
...
Proposed solution
The value of doing this:
When we add/remove "utAssert.xxx", we know the action have been put into the suite.
I agree that this valuable enhancement. I did similar changes in feature-requests-1 for testsuite overall output. It looks like this for success:
And like this for failure:
As for package, I suggest output like this:
Where
Z
is the total number ofasserts
in the package.