Add association @group from exceptions redis of the tests
This commit is contained in:
@ -26,12 +26,18 @@ class RedisDebugTest extends PHPUnit_Framework_TestCase
|
||||
return parent::run($result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @group Redis
|
||||
*/
|
||||
public function testConstructException()
|
||||
{
|
||||
$this->setExpectedException('GeneralException');
|
||||
$redisDebug = new RedisDebug('redis');
|
||||
}
|
||||
|
||||
/**
|
||||
* @group Redis
|
||||
*/
|
||||
public function testConstructGood()
|
||||
{
|
||||
$mock = $this->getMock('Redis');
|
||||
@ -47,6 +53,7 @@ class RedisDebugTest extends PHPUnit_Framework_TestCase
|
||||
|
||||
/**
|
||||
* @runInSeparateProcess
|
||||
* @group Redis
|
||||
*/
|
||||
public function testCallSimpleParams()
|
||||
{
|
||||
@ -66,6 +73,7 @@ class RedisDebugTest extends PHPUnit_Framework_TestCase
|
||||
|
||||
/**
|
||||
* @runInSeparateProcess
|
||||
* @group Redis
|
||||
*/
|
||||
public function testCallArrayParam()
|
||||
{
|
||||
@ -85,6 +93,7 @@ class RedisDebugTest extends PHPUnit_Framework_TestCase
|
||||
|
||||
/**
|
||||
* @runInSeparateProcess
|
||||
* @group Redis
|
||||
*/
|
||||
public function testCallUndefinedMethod()
|
||||
{
|
||||
|
Reference in New Issue
Block a user