test_callback.php 828 B

123456789101112131415161718192021222324252627
  1. <?php
  2. //if (PHP_VERSION < 5.3)
  3. // throw new Exception("This test case is only for PHP 5.3 and above.");
  4. require('/home/bob/Sources/php/simpletest/simpletest/trunk/autorun.php');
  5. require_once('../phpQuery/phpQuery.php');
  6. phpQuery::$debug = true;
  7. class CallbackTest extends UnitTestCase {
  8. public function callback2() {
  9. return 'callback2';
  10. }
  11. public function callback1($self) {
  12. return $self;
  13. }
  14. public function testExtend() {
  15. $newMethods = array(
  16. 'newMethod1' => array($this, 'callback1'),
  17. 'newMethod2' => array($this, 'callback2'),
  18. );
  19. phpQuery::extend('phpQueryObject', $newMethods);
  20. $doc = phpQuery::newDocumentXML("<div/>");
  21. $this->assertTrue($doc->newMethod1() == $doc,
  22. '$doc->newMethod1 == $doc');
  23. $this->assertTrue($doc->newMethod2() == "callback2",
  24. '$doc->newMethod1 == "callback2"');
  25. }
  26. }