var fDesc=new Array(); fDesc[0] = "For the project manager, it provides the ability to create, edit and delete your project's requirements in a hierarchical organization that resembles a typical scope matrix. Each of your requirements is mapped to one or more test cases that can be used to validate that your functionality works as expected.
For the tester, SpiraTest provides the ability to execute groups of your test cases - along with their test steps – so that the testers can follow the instructions and determine if the system being tested behaves as expected. Any deviations from expected behavior can then be recorded as defects and managed in the defect tracking module.
In addition, SpiraTest has personalized dashboards of key project information. All of the information you need to see the health of the project - requirements coverage, test case execution, issue summaries, bug counts – on one page."; 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 = ''; } }