Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unit testing Tool for Sybase database

Do we have any tools to unit testing Sybase databases around?

i am not able to find one in http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks

i am looking out for a tool that can allow me to unit test Stored procedure.Something like wee do with utPLSQL.This tool will be used by Database guys to unit test.

like image 725
Santosh Gokak Avatar asked Nov 25 '22 22:11

Santosh Gokak


1 Answers

What exactly do you want to test? The correctness of Sybase itself or some stored procedures you've written that run in Sybase? If the latter, then you could use JUnit to execute the stored procedures via JDBC (I'm assuming based on your username that Java is a language you're comfortable with).

like image 139
Dónal Avatar answered Jan 05 '23 21:01

Dónal