Browse Source

replacement @expectedException to setExpectedException

master
Vyacheslav Agafonov 13 years ago
parent
commit
0ade94a5ea
  1. 15
      tests/validator/RegexValidatorTest.php

15
tests/validator/RegexValidatorTest.php

@ -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'));
}
Loading…
Cancel
Save