[Process] removed uninteresting tests

This commit is contained in:
Fabien Potencier 2012-07-10 15:19:05 +02:00
parent 5f5efaf5c2
commit 80040c6a29
1 changed files with 0 additions and 17 deletions

View File

@ -18,23 +18,6 @@ use Symfony\Component\Process\Process;
*/
class ProcessTest extends \PHPUnit_Framework_TestCase
{
/**
* tests getter/setter
*
* @dataProvider methodProvider
*/
public function testDefaultGetterSetter($fn)
{
$p = new Process('php');
$setter = 'set'.$fn;
$getter = 'get'.$fn;
$this->assertNull($p->$setter(array('foo')));
$this->assertSame(array('foo'), $p->$getter(array('foo')));
}
/**
* tests results from sub processes
*