var fDesc=new Array();
fDesc[0] = "The dbForge SQL database unit testing tool is based on the open-source tSQLt framework, so SQL developers can now benefit from writing unit tests in regular T-SQL. The functionality of Unit Test allows you to develop stable and reliable code that can be properly regression-tested at the unit level.
Key Features:
* Customizable unit tests for SQL Server databases
* Direct test execution with the convenient single-tab Test List Manager
* Access from the SSMS Object Explorer
* Extensive tSQLt management
* Unit tests in T-SQL
* Predefined unit tests
* Test class management
You can always find the latest version of the product on the official Devart website.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}