Esempio n. 1
0
 /**
  * @dataProvider getEmptyValues
  * @expectedException \Symfony\Component\Config\Definition\Exception\InvalidConfigurationException
  *
  * @param mixed $value
  */
 public function testNotAllowedEmptyValuesThrowException($value)
 {
     $node = new ScalarNode('test');
     $node->setAllowEmptyValue(false);
     $node->finalize($value);
 }