var fDesc=new Array(); fDesc[0] = "Visual T# is a unit tests development environment integrated within Visual Studio™, though it can also be used indepedently from it. It is composed of :

- T# : a programming language specific to unit tests. T# is based on the C#™ language, which makes it a natural fit for .NET developers. New reserved keywords have been added to simplify the writing of unit tests. It puts a lot of emphasis on unambiguously defining tests' intentions.
- Tools for compiling tests, executing them, testing them and easily navigating amongst them."; 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 = ''; } }