removed unneded test groups

This commit is contained in:
Fabien Potencier 2014-02-03 09:12:26 +01:00
parent 51d3d62946
commit 10d4d56106
2 changed files with 0 additions and 9 deletions

View File

@ -247,9 +247,6 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase
$this->assertSame(Process::STATUS_TERMINATED, $process->getStatus());
}
/**
* @group pty
*/
public function testPTYCommand()
{
if (!Process::isPtySupported()) {
@ -264,9 +261,6 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase
$this->assertEquals("foo\r\n", $process->getOutput());
}
/**
* @group mustRun
*/
public function testMustRun()
{
$process = $this->getProcess('echo "foo"');
@ -278,7 +272,6 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase
/**
* @expectedException Symfony\Component\Process\Exception\ProcessFailedException
* @group mustRun
*/
public function testMustRunThrowsException()
{

View File

@ -47,7 +47,6 @@ class SigchildDisabledProcessTest extends AbstractProcessTest
/**
* @expectedException \Symfony\Component\Process\Exception\RuntimeException
* @group mustRun
*/
public function testMustRun()
{
@ -56,7 +55,6 @@ class SigchildDisabledProcessTest extends AbstractProcessTest
/**
* @expectedException \Symfony\Component\Process\Exception\RuntimeException
* @group mustRun
*/
public function testMustRunThrowsException()
{