var fDesc=new Array(); fDesc[0] = "“Test Case Export to Excel” enables the users to export the test cases present in TFS as Work Item(s) to excel sheet. Thus, the users will have backward compatibility with the process they were using.

-The tool will be able to fetch the test suite created manually only. The user story/requirement will not be displayed in the tree structure.

-The tool can only export work items of type "Test Case" only. If the test case contains any Shared Steps then the tool will throw an error message, as Shared Sets are managed as different work items in TFS."; 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 = ''; } }