var fDesc=new Array();
fDesc[0] = "Mx-VDev is used to capture requirements as test cases and verify that the requirements have been met.
Highlights
Use Mx-VDev™ to test a model, software-in-the-loop implementation, or a target on a HIL tester.
Building block test cases allow you top build complex test scenarios, with sequential and concurrent execution.
Maintain complex test suites by presenting the test cases in a graphical, easy-to-understand representation.
The Mx-VDev™ building block approach to creating test vectors enables you to reuse tests or parts of tests at many levels (Scenarios, Test Cases, Signals, BataBlocks, Transitions)";
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 = '';
}
}