12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <title>TestProject1 - UnitTest1</title>
- <link href="scripts/QUnit.css" rel="stylesheet" type="text/css" />
- <script src="scripts/QUnit.js" type="text/javascript"></script>
- <script src="scripts/QUnitExt.js" type="text/javascript"></script>
- <script type="text/javascript">
- module("module");
- test("test", function() {
- ok(true);
- });
-
- </script>
- </head>
- <body>
- <!-- Include any markup you need in the page for use in the test -->
- <h1 id="qunit-header">
- TestProject1 - UnitTest1 Results</h1>
- <h2 id="qunit-banner">
- </h2>
- <h2 id="qunit-userAgent">
- </h2>
- <ol id="qunit-tests">
- </ol>
- <br />
- <textarea id="qunit-log" rows="10" cols="100"></textarea>
- </body>
- </html>
|