Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

27 lines
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