replacement @expectedException to setExpectedException
This commit is contained in:
@ -15,22 +15,15 @@ require_once dirname(__FILE__) . '/../../exception/Error404Exception.php';
|
|||||||
|
|
||||||
class Error404ExceptionTest extends PHPUnit_Framework_TestCase
|
class Error404ExceptionTest extends PHPUnit_Framework_TestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Error404Exception
|
|
||||||
*/
|
|
||||||
public function testError404Exception()
|
public function testError404Exception()
|
||||||
{
|
{
|
||||||
|
$this->setExpectedException('Error404Exception');
|
||||||
throw new Error404Exception();
|
throw new Error404Exception();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Error404Exception
|
|
||||||
* @expectedExceptionMessage Error404Exception message
|
|
||||||
* @excpectedExceptionCode 1
|
|
||||||
*/
|
|
||||||
public function testError404ExceptionMessage()
|
public function testError404ExceptionMessage()
|
||||||
{
|
{
|
||||||
|
$this->setExpectedException('Error404Exception', 'Error404Exception message', 10);
|
||||||
throw new Error404Exception('Error404Exception message', 10);
|
throw new Error404Exception('Error404Exception message', 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,12 +33,9 @@ class ErrorHandlerTest extends PHPUnit_Framework_TestCase
|
|||||||
$this->assertEquals($eh, $my_eh);
|
$this->assertEquals($eh, $my_eh);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException ErrorException
|
|
||||||
* @expectedExceptionMessage test error
|
|
||||||
*/
|
|
||||||
public function testHandleError()
|
public function testHandleError()
|
||||||
{
|
{
|
||||||
|
$this->setExpectedException('ErrorException', 'test error');
|
||||||
trigger_error("test error", E_USER_ERROR);
|
trigger_error("test error", E_USER_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,22 +14,15 @@ require_once dirname(__FILE__) . '/../../exception/GeneralException.php';
|
|||||||
|
|
||||||
class GeneralExceptionTest extends PHPUnit_Framework_TestCase
|
class GeneralExceptionTest extends PHPUnit_Framework_TestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException GeneralException
|
|
||||||
*/
|
|
||||||
public function testGeneralException()
|
public function testGeneralException()
|
||||||
{
|
{
|
||||||
|
$this->setExpectedException('GeneralException');
|
||||||
throw new GeneralException();
|
throw new GeneralException();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException GeneralException
|
|
||||||
* @expectedExceptionMessage GeneralException message
|
|
||||||
* @excpectedExceptionCode 1
|
|
||||||
*/
|
|
||||||
public function testGeneralExceptionMessage()
|
public function testGeneralExceptionMessage()
|
||||||
{
|
{
|
||||||
|
$this->setExpectedException('GeneralException', 'GeneralException message', 1);
|
||||||
throw new GeneralException('GeneralException message', 1);
|
throw new GeneralException('GeneralException message', 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,22 +14,15 @@ require_once dirname(__FILE__) . '/../../exception/InitializationException.php';
|
|||||||
|
|
||||||
class InitializationExceptionTest extends PHPUnit_Framework_TestCase
|
class InitializationExceptionTest extends PHPUnit_Framework_TestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException InitializationException
|
|
||||||
*/
|
|
||||||
public function testInitializationException()
|
public function testInitializationException()
|
||||||
{
|
{
|
||||||
|
$this->setExpectedException('InitializationException');
|
||||||
throw new InitializationException();
|
throw new InitializationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException InitializationException
|
|
||||||
* @expectedExceptionMessage InitializationException message
|
|
||||||
* @excpectedExceptionCode 1
|
|
||||||
*/
|
|
||||||
public function testInitializationExceptionMessage()
|
public function testInitializationExceptionMessage()
|
||||||
{
|
{
|
||||||
|
$this->setExpectedException('InitializationException', 'InitializationException message', 1);
|
||||||
throw new InitializationException('InitializationException message', 1);
|
throw new InitializationException('InitializationException message', 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user