Added Support to pass comma delimited list of test names - #710
Conversation
jgebal
left a comment
There was a problem hiding this comment.
Documentation needs to be updated as well to describe the new functionality.
| procedure generate_invalid_spec; | ||
| procedure drop_test_package; | ||
|
|
||
| procedure create_test_csl_packages; |
There was a problem hiding this comment.
Can you make it a context and use beforeall / afterall inside context?
That way the package will get created/dropped only once.
| begin | ||
| select * | ||
| bulk collect into l_results | ||
| from table(ut3.ut.run('test_csl_names1,test_csl_names2')); |
There was a problem hiding this comment.
Can you add spaces / tabs instde the text to validate that it still works?
| execute immediate 'drop package invalid_pckag_that_revalidates'; | ||
| execute immediate 'drop package parent_specs'; | ||
| end; | ||
|
|
There was a problem hiding this comment.
Can you cover all 3 changed entry points (procedures) with tests so we have regression for each of them?
|
We should move the logic chane to ut_runner and convert each element of |
|
I have updated tests, moved decomposing of coma separated list into ut_runner and updated docs. |
Add option of using a coma separated string of test names.
Fixes #479