1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>JSCoverage - code coverage for JavaScript</title>
<link rel="stylesheet" type="text/css" href="reset-fonts-grids.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="doc3" class="yui-t5">
<div id="hd"><h1>JSCoverage<br><span class="tag">code coverage for JavaScript</span></h1></div>
<div id="bd">
<div id="yui-main">
<div id="jscoverage-main" class="yui-b">
<p>
JSCoverage is a tool that measures code coverage for
JavaScript programs.
</p>
<p>
<dfn>Code coverage</dfn> statistics show which lines of a program have
been executed (and which have been missed). This information is useful
for constructing comprehensive test suites (for which it is often called
<dfn>test coverage</dfn>).
</p>
<p>
JSCoverage works by instrumenting the JavaScript code used in web
pages. Code coverage statistics are collected while the instrumented
JavaScript code is executed in a web browser.
</p>
<p>
JSCoverage works with any modern standards-compliant web browser -
including Internet Explorer (IE 6 and IE 7), Firefox (FF 2 and FF 3), Opera, and Safari
- on Windows and Linux.
</p>
<p>
JSCoverage is free software, distributed under the
<a href="license.html">GNU General Public License</a>.
</p>
</div>
</div>
<div id="jscoverage-sidebar" class="yui-b">
<ul>
<li>Home
<li><a href="news.html">News</a> <a href="http://siliconforks.com/jscoverage/news.xml" type="application/rss+xml" title="RSS feed for JSCoverage"><img src="feed-icon-14x14.png" alt="RSS feed"></a>
<li><a href="manual.html">Documentation</a>
<li><a href="demo.html">Demo</a>
<li><a href="http://siliconforks.com/jscoverage/download.html">Download</a>
<li><a href="faq.html">FAQ</a>
<li><a href="help.html">Help</a>
<li><a href="license.html">License</a>
<li><a href="links.html">Links</a>
</ul>
</div>
</div>
<div id="ft">
<address>
Copyright © 2007 siliconforks.com<br>
Last updated September 4, 2007<br>
<a href="mailto:jscoverage@siliconforks.com">jscoverage@siliconforks.com</a>
</address>
</div>
</div>
</body>
</html>
|