CaptchaHelperTest.php 491 B

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