asynctestcase_noasync_test.html 885 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <!--
  4. Copyright 2009 The Closure Library Authors. All Rights Reserved.
  5. Use of this source code is governed by the Apache License, Version 2.0.
  6. See the COPYING file for details.
  7. -->
  8. <!--
  9. Author: agrieve@google.com (Andrew Grieve)
  10. This tests that the AsyncTestCase can handle synchronous behaviour in:
  11. setUpPage(),
  12. setUp(),
  13. test*(),
  14. tearDown()
  15. It is the same test as asynctestcase_async_test.html, except that it uses a mock
  16. version of window.setTimeout() to eliminate all asynchronous calls.
  17. -->
  18. <head>
  19. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  20. <meta charset="UTF-8" />
  21. <title>
  22. Closure Unit Tests - goog.testing.AsyncTestCase Synchronous Tests
  23. </title>
  24. <script src="../base.js">
  25. </script>
  26. <script type="text/javascript">
  27. goog.require('goog.testing.AsyncTestCaseSyncTest');
  28. </script>
  29. </head>
  30. <body>
  31. </body>
  32. </html>