use Symfony\Component\Validator\Constraints\Valid;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
/**
* @author Przemysław Bogusz <przemyslaw.bogusz@tubotax.pl>
*/
class AtLeastOneOfTest extends TestCase
{ public function testRejectNonConstraints() { $this->
expectException(ConstraintDefinitionException::
class);
new AtLeastOneOf([ 'foo',
]);
} public function testRejectValidConstraint() { $this->
expectException(ConstraintDefinitionException::
class);
new AtLeastOneOf([ new Valid(),
]);
}}