var fDesc=new Array(); fDesc[0] = "TestCocoon is a complete code coverage tool chain for C/C and C# programs available under Apple® Mac OS X, Linux™ or Microsoft® Windows. It analyzes the performance of a software validation and permits to measure the performance and optimizes the testing process of a C/C or C# applications:
- Finding untested code sections.
- Reducing the amount of tests by finding redundant tests.
- With TestCocoon it is possible to find which portion of the source code is covered only by one execution of a test, and to detect if a new test does not cover more source code line than existing tests.
- Finding dead code trough displaying the code parts which are never executed.
- Specially useful for manual testing:
- TestCocoon is able to calculate the optimal execution order of tests which maximize the overall coverage after each run.
- Also, TestCocoon is able to perform its analysis on a difference of two applications.
- This permits to find which tests are impacted by a source code modification and permits to measure the test quality of a patch or a hot fix."; 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 = ''; } }