utPLSQL / utPLSQL-SQLDeveloper

Extension for running unit tests straight from SQL Developer
Apache License 2.0
63 stars 17 forks source link

Enable one unit test in a bunch of Unit Tests #164

Closed doricardo closed 1 year ago

doricardo commented 1 year ago

We have a package that has 15 unit tests, Is there any possibility to run only one of them instead of mentioning --%disabledon the others 14 tests?

jgebal commented 1 year ago

ut.run('schema.package.procedure');

That sould do the trick.

jgebal commented 1 year ago

You can run individual test procedure from UI too.

doricardo commented 1 year ago

ut.run('schema.package.procedure');

That sould do the trick.

Much appreciate mate

jgebal commented 1 year ago

You may also have a look into utPLSQL documentation for more details or look in the resouces page for some good blogs/videos.