ValidTest.php 689 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Validator\Tests\Constraints;
  11. use PHPUnit\Framework\TestCase;
  12. use Symfony\Component\Validator\Constraints\Valid;
  13. /**
  14. * @author Bernhard Schussek <bschussek@gmail.com>
  15. */
  16. class ValidTest extends TestCase
  17. {
  18. /**
  19. * @expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException
  20. */
  21. public function testRejectGroupsOption()
  22. {
  23. new Valid(array('groups' => 'foo'));
  24. }
  25. }