mirror of
https://github.com/Respect/Validation.git
synced 2026-03-15 14:55:44 +01:00
17 lines
485 B
PHP
17 lines
485 B
PHP
<?php
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class AbstractGroupedExceptionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testOneOrMoreGroupedExceptionsShouldBeCondensedByGetRelated()
|
|
{
|
|
$int =new IntException();
|
|
$e = new AbstractGroupedException;
|
|
$e2 = new AbstractNestedException;
|
|
$e->addRelated($e2);
|
|
$e2->addRelated($int);
|
|
$result = $e->getRelated();
|
|
$this->assertSame($int, current($result));
|
|
}
|
|
}
|
|
|