Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
57
vendor/symfony/serializer/Tests/Annotation/MaxDepthTest.php
vendored
Normal file
57
vendor/symfony/serializer/Tests/Annotation/MaxDepthTest.php
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Serializer\Tests\Annotation;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Symfony\Component\Serializer\Annotation\MaxDepth;
|
||||
|
||||
/**
|
||||
* @author Kévin Dunglas <dunglas@gmail.com>
|
||||
*/
|
||||
class MaxDepthTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @expectedException \Symfony\Component\Serializer\Exception\InvalidArgumentException
|
||||
* @expectedExceptionMessage Parameter of annotation "Symfony\Component\Serializer\Annotation\MaxDepth" should be set.
|
||||
*/
|
||||
public function testNotSetMaxDepthParameter()
|
||||
{
|
||||
new MaxDepth(array());
|
||||
}
|
||||
|
||||
public function provideInvalidValues()
|
||||
{
|
||||
return array(
|
||||
array(''),
|
||||
array('foo'),
|
||||
array('1'),
|
||||
array(0),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider provideInvalidValues
|
||||
*
|
||||
* @expectedException \Symfony\Component\Serializer\Exception\InvalidArgumentException
|
||||
* @expectedExceptionMessage Parameter of annotation "Symfony\Component\Serializer\Annotation\MaxDepth" must be a positive integer.
|
||||
*/
|
||||
public function testNotAnIntMaxDepthParameter($value)
|
||||
{
|
||||
new MaxDepth(array('value' => $value));
|
||||
}
|
||||
|
||||
public function testMaxDepthParameters()
|
||||
{
|
||||
$maxDepth = new MaxDepth(array('value' => 3));
|
||||
$this->assertEquals(3, $maxDepth->getMaxDepth());
|
||||
}
|
||||
}
|
Reference in a new issue