asynctestcase_async_test.html 739 B

1234567891011121314151617181920212223242526272829303132
  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 asynchronous behaviour in:
  11. setUpPage(),
  12. setUp(),
  13. test*(),
  14. tearDown()
  15. -->
  16. <head>
  17. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  18. <meta charset="UTF-8" />
  19. <title>
  20. Closure Unit Tests - goog.testing.AsyncTestCase Asyncronous Tests
  21. </title>
  22. <script src="../base.js">
  23. </script>
  24. <script type="text/javascript">
  25. goog.require('goog.testing.AsyncTestCaseAsyncTest');
  26. </script>
  27. </head>
  28. <body>
  29. </body>
  30. </html>