You are here

public function AbstractProcessTest::provideMethodsThatNeedARunningProcess in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/process/Tests/AbstractProcessTest.php \Symfony\Component\Process\Tests\AbstractProcessTest::provideMethodsThatNeedARunningProcess()

File

vendor/symfony/process/Tests/AbstractProcessTest.php, line 959

Class

AbstractProcessTest
@author Robert Schönthal <seroscho@googlemail.com>

Namespace

Symfony\Component\Process\Tests

Code

public function provideMethodsThatNeedARunningProcess() {
  return array(
    array(
      'getOutput',
    ),
    array(
      'getIncrementalOutput',
    ),
    array(
      'getErrorOutput',
    ),
    array(
      'getIncrementalErrorOutput',
    ),
    array(
      'wait',
    ),
  );
}