captcha.test.php 410 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. App::import('Helper', 'Tools.Captcha');
  3. App::import('Helper', 'Html');
  4. /**
  5. * 2010-06-24 ms
  6. */
  7. class CaptchaTest extends CakeTestCase {
  8. /**
  9. * setUp method
  10. */
  11. function setUp() {
  12. $this->Captcha = new CaptchaHelper();
  13. $this->Captcha->Html = new HtmlHelper();
  14. }
  15. /** TODO **/
  16. function testXXX() {
  17. //TODO
  18. }
  19. /**
  20. * tearDown method
  21. */
  22. function tearDown() {
  23. unset($this->Captcha);
  24. }
  25. }
  26. ?>