replacement @expectedException to setExpectedException
This commit is contained in:
@ -45,12 +45,10 @@ class RegexValidatorTest extends PHPUnit_Framework_TestCase
|
||||
$this->assertEquals('i am ok', $validator->getMessage());
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException GeneralException
|
||||
* @expectedExceptionMessage Message template "regex_not_match" unknown.
|
||||
*/
|
||||
|
||||
public function testNullMessage()
|
||||
{
|
||||
$this->setExpectedException('GeneralException', 'Message template "regex_not_match" unknown.');
|
||||
$validator = new RegexValidator('/a/i');
|
||||
$validator->setMessage(null, null);
|
||||
$validator->isValid('1212');
|
||||
@ -58,20 +56,17 @@ class RegexValidatorTest extends PHPUnit_Framework_TestCase
|
||||
|
||||
/**
|
||||
* @TODO: RegexValidator - wrong regex throws an error. Check this.
|
||||
* @expectedException PHPUnit_Framework_Error
|
||||
*/
|
||||
public function testWrongRegexp()
|
||||
{
|
||||
$this->setExpectedException('PHPUnit_Framework_Error');
|
||||
$validator = new RegexValidator('/^[a-z][0-9]$*/i');
|
||||
$this->assertFalse($validator->isValid('to423$%ny'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException GeneralException
|
||||
* @expectedExceptionMessage regex
|
||||
*/
|
||||
public function testRegexReturnsFalse()
|
||||
{
|
||||
{
|
||||
$this->setExpectedException('GeneralException', 'regex');
|
||||
$validator = new RegexValidator('/(?:\D+|<\d+>)*[!?]/');
|
||||
$this->assertFalse($validator->isValid('foobar foobar foobar'));
|
||||
}
|
||||
|
Reference in New Issue
Block a user