Rename rule "Int" to "IntVal"

This commit is contained in:
Henrique Moody 2015-10-07 11:46:57 -03:00
commit 9b85df4601
35 changed files with 76 additions and 76 deletions

View file

@ -31,7 +31,7 @@ class AbstractNestedExceptionTest extends \PHPUnit_Framework_TestCase
public function testGetRelatedShouldReturnExceptionAddedByAddRelated()
{
$composite = new AttributeException();
$node = new IntException();
$node = new IntValException();
$composite->addRelated($node);
$this->assertEquals(1, count($composite->getRelated(true)));
$this->assertContainsOnly($node, $composite->getRelated());
@ -40,7 +40,7 @@ class AbstractNestedExceptionTest extends \PHPUnit_Framework_TestCase
public function testAddingTheSameInstanceShouldAddJustASingleReference()
{
$composite = new AttributeException();
$node = new IntException();
$node = new IntValException();
$composite->addRelated($node);
$composite->addRelated($node);
$composite->addRelated($node);