1<?php 2/* 3 * This file is part of PHPUnit. 4 * 5 * (c) Sebastian Bergmann <sebastian@phpunit.de> 6 * 7 * For the full copyright and license information, please view the LICENSE 8 * file that was distributed with this source code. 9 */ 10 11class PHPUnit_Framework_TestSuite_DataProvider extends PHPUnit_Framework_TestSuite 12{ 13 /** 14 * Sets the dependencies of a TestCase. 15 * 16 * @param array $dependencies 17 */ 18 public function setDependencies(array $dependencies) 19 { 20 foreach ($this->tests as $test) { 21 $test->setDependencies($dependencies); 22 } 23 } 24} 25