PHPUnit_Framework_TestSuite_DataProvider::setDependencies PHP Method

setDependencies() public method

Sets the dependencies of a TestCase.
public setDependencies ( array $dependencies )
$dependencies array
    public function setDependencies(array $dependencies)
    {
        foreach ($this->tests as $test) {
            $test->setDependencies($dependencies);
        }
    }
PHPUnit_Framework_TestSuite_DataProvider