qunit-callback.htm 908 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3. <head>
  4. <title>TestProject1 - UnitTest1</title>
  5. <link href="scripts/QUnit.css" rel="stylesheet" type="text/css" />
  6. <script src="scripts/QUnit.js" type="text/javascript"></script>
  7. <script src="scripts/QUnitExt.js" type="text/javascript"></script>
  8. <script type="text/javascript">
  9. module("module");
  10. test("test", function() {
  11. ok(true);
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <!-- Include any markup you need in the page for use in the test -->
  17. <h1 id="qunit-header">
  18. TestProject1 - UnitTest1 Results</h1>
  19. <h2 id="qunit-banner">
  20. </h2>
  21. <h2 id="qunit-userAgent">
  22. </h2>
  23. <ol id="qunit-tests">
  24. </ol>
  25. <br />
  26. <textarea id="qunit-log" rows="10" cols="100"></textarea>
  27. </body>
  28. </html>