No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

27 líneas
525B

  1. <?php
  2. /**
  3. * Controller for PHPT that implements the SimpleTest unit-testing interface.
  4. */
  5. class PHPT_Controller_SimpleTest extends SimpleTestCase
  6. {
  7. protected $_path;
  8. public function __construct($path)
  9. {
  10. $this->_path = $path;
  11. parent::__construct($path);
  12. }
  13. public function testPhpt()
  14. {
  15. $suite = new PHPT_Suite(array($this->_path));
  16. $phpt_reporter = new PHPT_Reporter_SimpleTest($this->reporter);
  17. $suite->run($phpt_reporter);
  18. }
  19. }
  20. // vim: et sw=4 sts=4