use Symfony\Component\Validator\Constraints\Valid;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
/**
* @author Bernhard Schussek <bschussek@gmail.com>
*/
class AllTest extends TestCase
{ public function testRejectNonConstraints() { $this->
expectException(ConstraintDefinitionException::
class);
new All([ 'foo',
]);
} public function testRejectValidConstraint() { $this->
expectException(ConstraintDefinitionException::
class);
new All([ new Valid(),
]);
}}