PageRenderTime 28ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ITestHarness.as

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
ActionScript | 20 lines | 11 code | 1 blank | 8 comment | 0 complexity | 3d2ef1a09e71fac0023e2b49ca28962d MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. /**
  2. * ITestHarness
  3. *
  4. * An interface to specify what's available for test cases to use.
  5. * Copyright (c) 2007 Henri Torgemane
  6. *
  7. * See LICENSE.txt for full license information.
  8. */
  9. package com.hurlant.crypto.tests
  10. {
  11. public interface ITestHarness
  12. {
  13. function beginTestCase(name:String):void;
  14. function endTestCase():void;
  15. function beginTest(name:String):void;
  16. function passTest():void;
  17. function failTest(msg:String):void;
  18. }
  19. }