Source for file OutputterInterface.php
Documentation is available at OutputterInterface.php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
* This file is part of the PEAR Testing_DocTest package.
* LICENSE: This source file is subject to the MIT license that is available
* through the world-wide-web at the following URI:
* http://opensource.org/licenses/mit-license.php
* @package Testing_DocTest
* @author David JEAN LOUIS <izimobil@gmail.com>
* @copyright 2008 David JEAN LOUIS
* @license http://opensource.org/licenses/mit-license.php MIT License
* @link http://pear.php.net/package/Testing_DocTest
* @since File available since release 0.1.0
* DocTest Outputter interface.
* All outputters must implement this interface.
* @package Testing_DocTest
* @author David JEAN LOUIS <izimobil@gmail.com>
* @copyright 2008 David JEAN LOUIS
* @license http://opensource.org/licenses/mit-license.php MIT License
* @version Release: 0.3.0
* @link http://pear.php.net/package/Testing_DocTest
* @since Class available since release 0.1.0
* Begin of the DocTest session.
* The array parameter is as follows:
* '/path/to/file1.php' => array($testCase1, $testCase2),
* '/path/to/file2.php' => array($testCase3, $testCase4),
* '/path/to/fileN.php' => array($testCaseN),
* Note that the test cases provided in the array have not been run yet.
* @param array $files a multidimensional array of file=>testcase array
public function begin(array $files);
* End of the DocTest session.
* The array parameter is as follows:
* '/path/to/file1.php' => array($testCase1, $testCase2),
* '/path/to/file2.php' => array($testCase3, $testCase4),
* '/path/to/fileN.php' => array($testCaseN),
* @param array $files a multidimensional array of file=>testcase array
public function end (array $files);
* Note that the test cases provided in the array have not been run yet.
* @param string $file path to the file that will be processed
* @param array $testCaseArray an array of test case instances
public function beginFile ($file, array $testCaseArray);
* @param string $file path to the file that will be processed
* @param array $testCaseArray an array of test case instances
public function endFile ($file, array $testCaseArray);
* Begin of test case parsing.
* Note that the test case provided have not been run yet.
* @param object $testCase a test case instance
public function beginTestCase (Testing_DocTest_TestCase $testCase);
* End of test case parsing.
* @param object $testCase a test case instance
public function endTestCase(Testing_DocTest_TestCase $testCase);
Documentation generated on Mon, 11 Mar 2019 15:18:33 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|