123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
-
- require_once 'Sweety/TestLocator.php';
- require_once 'Sweety/Reporter.php';
-
-
- interface Sweety_Runner
- {
-
-
- const REPORT_TEXT = 'text';
-
-
- const REPORT_XML = 'xml';
-
-
- const REPORT_HTML = 'html';
-
-
-
- public function setIgnoredClassRegex($ignoredClassRegex);
-
-
-
- public function setReporter(Sweety_Reporter $reporter);
-
-
-
- public function registerTestLocator(Sweety_TestLocator $locator);
-
-
-
- public function runAllTests($dirs = array());
-
-
-
- public function runTestCase($testName, $format = self::REPORT_TEXT);
-
- }
|